Linux Internals Interview Questions


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Linux Internals Interview Questions
# 1  
Old 02-04-2012
Linux Internals Interview Questions

Can anyone list the interview questions on Linux Internals?
Any link for the same will also be helpful.
In a job requirement of say C, linux internals what is expected about linux internals?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. What is on Your Mind?

How to switch from SVR4/BSD internals to Linux internals?

Hello, Long-time Unix hacker here - I've worked on four variants of the kernel prior to the introduction of Linux. In my spare time, I've written Linux (Ubuntu) device drivers, kernel modules, cross-compiled, and built the kernel. I'd like to do Linux internals/device drivers as a day job,... (1 Reply)
Discussion started by: OriginalVersion
1 Replies

2. Red Hat

interview questions..plz help

hello, I have some doubts .plz help if i try to ping from a server, it doesnt ping & gives different ip address, and in nslookup i get different ip address, what is the problem ? if u cant ssh to a server what will be ur steps ? give full iptables command to open port 22 ... (1 Reply)
Discussion started by: abhigrkist
1 Replies

3. Solaris

Interview questions

Hi guys, Interview Questions:- 1) There are 2 ways to create a slice in Solaris 1) we can create using format command but there say other than format 1more within sec. we can create a slice. 2) ? 2) How to create a temperory SWAP Space 3) How to check the Devices from the... (2 Replies)
Discussion started by: kurva
2 Replies

4. Solaris

Solaris Interview Questions

Hi, Can anyone tell me which is the good site for solaris interview questions. Let me know if anyone has some material on the same. Thanks in advance. (1 Reply)
Discussion started by: amult
1 Replies

5. Solaris

Solaris 10 Interview Questions?

Hey, My company is looking to bring on a Sr. UNIX Admin with Solaris 10 experience. What are some solid interview questions I could ask about UNIX and Solaris 10 that would weed a good guy out from a bad? Questions that don't involve long command lines would be the best. Thanks (1 Reply)
Discussion started by: mikepatton21
1 Replies

6. UNIX for Dummies Questions & Answers

Unix Interview Questions

Please please if anyone has time to answer them, this noob would highly appreciate it. Thanks in advance. 1. whats $# in a shell script 2. whats a $* in shell script 3. Explain nohup with an example 4. If $1 is the first parameter, whats $0 5. How do you see the return code of... (1 Reply)
Discussion started by: foxmulder123
1 Replies

7. Solaris

Interview Questions

hi everybody, my name is samir, i m from delhi,india. i m a student in solaris. just few days ago i had completed my course. can anybody tell me the possible interview questions in solaris. (1 Reply)
Discussion started by: samir_sinu
1 Replies
Login or Register to Ask a Question
Internals(3)						User Contributed Perl Documentation					      Internals(3)

NAME
Internals - Write-protect variables, manipulate refcounts SYNOPSIS
use Internals qw(IsWriteProtected SetReadOnly SetReadWrite GetRefCount SetRefCount); use Internals qw(:all); $object = My::Class->new(@parameters); SetReadOnly($object); SetReadWrite($object); if (IsWriteProtected($object)) { ... } $value = GetRefCount($object); SetRefCount($object,$value); or package My::Class; use Internals; @ISA = qw(Internals); $object = My::Class->new(@parameters)->SetReadOnly(); $object->SetReadWrite(); if ($object->IsWriteProtected()) { ... } $value = $object->GetRefCount(); $object->SetRefCount($value); or use Internals qw(IsWriteProtected SetReadOnly SetReadWrite GetRefCount SetRefCount); use Internals qw(:all); SetReadOnly($scalar); SetReadOnly(@array); SetReadOnly(\%hash); SetReadOnly($hash{$element}); SetReadOnly($reference); etc. DESCRIPTION
This module allows you to write-protect and write-enable your Perl variables, objects and data structures. Moreover, the reference count of any Perl variable can be read and set. You can never pass the object directly on which to perform the desired action, you always have to pass a reference to the variable or data structure in question. This comes in handy for objects and anonymous data structures, where you only have a reference anyway! BEWARE: This module is DANGEROUS! DO NOT attempt to unlock Perl's built-in variables! DO NOT manipulate reference counts unless you know exactly what you're doing! ANYTHING might happen! Hell might break loose! ":-)" YOU HAVE BEEN WARNED! VERSION
This man page documents "Internals" version 1.1. AUTHOR
Steffen Beyer mailto:sb@engelschall.com http://www.engelschall.com/u/sb/download/ COPYRIGHT
Copyright (c) 2001 by Steffen Beyer. All rights reserved. LICENSE
This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, i.e., under the terms of the "Artistic License" or the "GNU General Public License". Please refer to the files "Artistic.txt" and "GNU_GPL.txt" in this distribution for details! DISCLAIMER
This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the "GNU General Public License" for more details. perl v5.18.2 2001-09-30 Internals(3)