Comment your answers and win a Linux Interview Kit ( anonymous users have less chance of winning )
Explain Process management and related commands
Explain Memory management and related commands
What is Open Group standards?
Secify seciaal usage for each one of the following file
/dev/null - Send unwanted output
/dev/random - Random number generation
/dev/zero - Cache or Destroy data on a partition - dd if=/dev/zero of=/dev/sda98
What is SELinux?
Write a command to find all of the files which have been accessed within the last 10 days.
What is LILO?
What is Grub?
Explain the difference between LILO and Grub
What is NFS?
What is NAMED?
What is MySQLD?
What is mysql?
What is CVS?
Why You Shouldn't Use the root Login for everyday work?
Describe the default partition scheme in Redhat Linux?
Describe the default partition scheme in Solaris? What is the slice number?
Describe all default mount point?
What is boot block?
What is logical block?
Describe the process for adding a new hard disk to UNIX box?
Describe the process for adding a new hard disk to Linux box?
Describe the process for adding a new hard disk to Linux LVM to grow /home?
Explain one major difference between a regular file system and a journaling file system?
Define JFS
Define UFS
How do you lock and unlock user account / password?
Describe RPM and command to install / remove / update Linux system?
Explain difference between rpm and up2date command.
Explain difference between rpm and apt-get command.
Explain difference between rpm and yum command.
Describe usage for pkgadd, pkginfo and pkgchk command
How do you find files on UNIX or Linux system?
Explain /etc/rc3.d
Explain ntsysv or chkconfig command
How do you get rid of process if kill PID is not working for you?
What is the purpose of the command?
grep
sed
awk
ifconfig
netstat
df
du
prtvtoc
fdisk -l
umaks
getfacl
setfacl
sudo
fsck
probe-scsi
vmstat
Explain LVM
1) What is a superblock ?
2) What is a parity bit?
3) What is an inod?
4) Explain top command ?
5) How to disable the root login in SSH ?
6) use of sysctl command ?
7) LVM how to ?
8)Different RAID levels ?
What are the services required for nfs, apache(http) and NIS?
What is the best way to check the status of any service?
What do you mean by parity in RAID and which RAID is useful now a days?
Explain Linux Boot process especially kernel and initrd.
Why we do have two commands useradd and adduser when their functialnality is same?
Comment your answers and win a Linux Interview Kit ( anonymous users have less chance of winning )
Linux administration , Unix administration , Vmware Vsphere administration , Oracle DBA ,apache, backup, dhcp, dns, kvm, xen, kernel, ldap, kvm, monitoring, ticketing, networking, Mail servers, SAN,troubleshooting
Labels
- Amanda (2)
- Ansible (2)
- Answer these Questions (2)
- antivirus (2)
- apache (3)
- Bash (16)
- Chef (3)
- Citrix (2)
- clusters (2)
- Concept (22)
- DatabaseAdminstration (11)
- DevOps (1)
- dhcp (2)
- Downloads (3)
- ELK (1)
- ELK stack (1)
- encryption (1)
- Free trainings (1)
- Frequently Used Commands (46)
- FTP (1)
- git (1)
- gpg (2)
- Hardware (1)
- httpd (2)
- Interview Questions (53)
- iptables (1)
- IT NEWS (3)
- java (1)
- kibana (2)
- knife (1)
- KVM (2)
- linux (17)
- Linux installations (22)
- Linux Jobs (4)
- Linux Links (2)
- logstash (1)
- Mac (1)
- MediaWiki (1)
- MySql (2)
- Nagios (2)
- Networking (3)
- open Nebula (5)
- Open Source tools (12)
- OpenNMS (1)
- openSSL (1)
- Oracle on Linux (5)
- Performance Monitoring (1)
- php (1)
- postfix (1)
- postgres (1)
- postgres-XL (1)
- Product Reviews (1)
- Python (2)
- rssh (1)
- Samba (2)
- Scripting (16)
- security (4)
- selinux (1)
- Server (1)
- SFTP (1)
- Social Awareness (1)
- Solaris (1)
- SSL (1)
- svn (1)
- TCP/IP (1)
- Technology (1)
- Tips and Tricks (32)
- Training and materials (8)
- Troubleshooting (6)
- Ubuntu (18)
- unix (1)
- virtualization (17)
- Vmware (25)
- Vyatta (1)
- windows7 (1)
- xml (1)
23 comments:
Why we do have two commands useradd and adduser when their functialnality is same?
adduser is just a symbolic link to useradd
thanks for mailing the answers after subscribing please send answers to these questions as well.
1. How do you list the files in an UNIX directory while also showing hidden files? 2. How do you execute a UNIX command in the background?
3. What UNIX command will control the default file permissions when files are created?
4. Explain the read, write, and execute permissions on a UNIX directory.
5. What is the difference between a soft link and a hard link?
6. Give the command to display space usage on the UNIX file system.
7. Explain iostat, vmstat and netstat.
8. How would you change all occurrences of a value using VI?
9. Give two UNIX kernel parameters that effect an Oracle install
10. Briefly, how do you install Oracle software on UNIX.
11. What are the main differences between Apache 1.x and 2.x?
12. What does the “route” command do?
13. What are the read/write/execute bits on a directory mean?
14. What does iostat do?
15. what does vmstat do?
16. What does netstat do?
17. What is the most graceful way to bring a system into single user mode?
18. How do you determine disk usage?
19. What is AWK?
20. What is SED?
21. What is the difference between binaries in /bin, and /usr/bin?
22. What is a dynamically linked file?
23. What is a statically linked file?
24. How do you list the files in an UNIX directory while also showing hidden files? ls -ltra
25. How do you execute a UNIX command in the background? Use the “&”.
26. What UNIX command will control the default file permissions when files are created? umask
27. Explain the read, write, and execute permissions on a UNIX directory. Read allows you to see and list the directory contents. Write allows you to create, edit and delete files and subdirectories in the directory. Execute gives you the permissions to run programs or shells from the directory.
28. What is the difference between a soft link and a hard link? A symbolic (soft) linked file and the targeted file can be located on the same or different file system while for a hard link they must be located on the same file system.
29. Give the command to display space usage on the UNIX file system. df -lk 30. Explain iostat, vmstat and netstat. iostat reports on terminal, disk and tape I/O activity. vmstat reports on virtual memory statistics for processes, disk, tape and CPU activity. netstat reports on the contents of network data structures. 31. How would you change all occurrences of a value using VI? %s/(old value)/(new value)/g
32. Give two UNIX kernel parameters that effect an Oracle install. SHMMAX & SHMMNI
33. Briefly, how do you install Oracle software on UNIX? Basically, set up disks, kernel parameters, and run orainst.
34. Job Scheduling; mainly crontab, at, batch command
35. Backup stetegy; incremental, full system back up; diff between tar & ufsdump
36. diff between hard link & softlink
37. How to list only the directories inside a directory (Ans. ls -l|grep “^d”)
38. RAID levels; pros & cons of diffrent levels; what is RAID 1+0
39. How to recover a system whose root password has lost?
40. What is a daemon?
41. How to put a job in background & bring it to foreground?
42. What is default permissions for others in a file?
43. Questions on shell initialization scripts?
44. Questions on restricted shell
45. What is diff betwn grep & find?
46. What is egrep?
47. Questions on shell programming
48. What is a pipe?
49. Questions on Solaris patch management like pkgadd etc
50. Questions on file system creation; actually what happens when we create a file system?
51. Questions on RBAC? what is a role accound & what is a profile?
52. From command line how will you add a user account? the full command will all arguments. 53. Fs it advisable to put a swap partion in RAID1 (mirroring?) pros & cons?
Ya i have decided to send PDF of interview questions after subscribing for feeds and join as a active member for free interview question ebooks and experts advice. Your questions are good will give feed back with a ebook to all members
thanks your answers are good please mail me vsphere interview questions also thanks in advance
thanks for your advice.please send me answers srinu.gtt134@gmail.com
CRegister at Follow my blog link at the bottom of this page to get interview questions with answers
can any body send me the answer please at
addi_18@yahoo.com I would be very help full for me please thanks
hi sir... ur interview questions are very helpful,... pls send more interview ques on linux... my mailid is ravindra414@gmail.com
can any one have copy of ready question and answer of above linux (simple and hard linux) then please forward it to me
sachinaher2005@gmail.com
thank (in advance)
Please send me the answers for above questions. My mail ID is ignore.plz@hotmail.com.
Thanks in advance.
hi sir... ur interview questions are very helpful,... pls send more interview ques on linux... my mailid is ramesharidass@gmail.com
Hi....
please send me the answers of this questions ......these are help to me.my mail id is raju.rhce87@gmail.com and thanks for your advise
plz mail me the answers urgetn i hav interviwe on 17th plzz.thank you gmail: mahee2ks@gmail.com
lease send me the answers for above questions. My mail ID venu@linuxmail.org
Hi all,
I just now completed RHCE and facing interviews..Please help me sending interview questions to me at id.arun [at]rediffmail.com
Hi.. Can I have answers for these questions. mail id is ram_euhr@yahoo.co.in
Hi friends any one please send answers to my mail pradaksha3@gmail.com
Thank you
can anybody send me answers for the above questions pls.
venkatesh.nallapati456@gmail.com
Thanks&Regards
Hi Sir,
Please send me the answers for the above questions to the nandha1cba@gmail.com mail id.
Regards,
Nanda
Hi Dear,
Pls send me the all answers of listed questions on amittyagi20@gmail.com.please
pls send me all answer to siddh1487@gmail.com i will be very thankful to you
Please mail me answers to all questions to my email Id narmi20003@yahoo.com
thank you
Post a Comment