Fresher Salary Details for Redhat Certified System Administrator


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Fresher Salary Details for Redhat Certified System Administrator
# 1  
Old 02-16-2012
Fresher Salary Details for Redhat Certified System Administrator

I am thinking of doing Redhat certified system Administrator Course(RHCSA).what is the salary details after doing this course in india,Singapore?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

RedHat administrator certification

Hi All, I want to get certified as RedHat administrator and i though why not to use this wonderfull forum to ask this question. Can someone please let me know some good institues in 'Mumbai' from where i can take RedHat courses and get certified. Also it will be of great help if i can get... (0 Replies)
Discussion started by: omkar.jadhav
0 Replies

2. What is on Your Mind?

Know your System Administrator

Couldn't resist: www.gnu.org/fun/jokes/know.your.sysadmin.html (1 Reply)
Discussion started by: radoulov
1 Replies

3. Shell Programming and Scripting

how do i check the REDHAT details?

I am using lunix machine. I want to check if this is RED HAT 4 or higher version. How do i check this? The below output does not tell about REDHAT version. $ uname -a Linux chfdallindb11 2.6.18-128.7.1.el5 #1 SMP Wed Aug 19 04:00:49 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux $ Any help... (2 Replies)
Discussion started by: govindts
2 Replies

4. Solaris

Solaris Certified System Associate

Hi All Please suggest the scope of Solaris Certified System Associate Certification. Am 3 yrs experienced in IT and working on Solaris, AIX and HP boxes. Please post if you hv information on this Thank you. (2 Replies)
Discussion started by: Srikanth Panda
2 Replies

5. HP-UX

Certification HP Certified Systems Administrator

Helle everyone, I want to get the Certification HP Certified Systems Administrator. But i dont understand exactly how much exams do i need to pass. Question : which exams do i have to passe to get this certificate? (9 Replies)
Discussion started by: stunaz
9 Replies

6. Solaris

Sun Certified System Administrator for the Solaris 10 OS, Part I (CX-310-200)

Hi all, I have been reading for Sun Solaris Administrator exam (CX-310-200) but i have kind of been dragging. Is there anyone preparing for this exam so we could make like a study group or accountability partner. Awaiting your response. thanks (6 Replies)
Discussion started by: nkechifesie
6 Replies

7. Solaris

Sun Certified Network Administrator for Solaris 10 OS (CX-310-302)

I want to start studying for Sun Certified Network Administrator for Solaris 10 OS (CX-310-302) Are there any books or study guides for this? I am pumping a dry well on Amazon and Borders... What have you used to study for this? Is there anything out there that is reasonable? I am not... (10 Replies)
Discussion started by: BrewDudeBob
10 Replies

8. What is on Your Mind?

I want to become a System Administrator

Has anyone got any advice on how I can get a job as a Unix/Solaris system administrator? My current job is supporting an application that runs on Solaris servers. I have very minimal Solaris/Unix skills but would like to expand on them with the aim of getting a junior sys admin role. I have... (4 Replies)
Discussion started by: Sepia
4 Replies

9. UNIX for Dummies Questions & Answers

Sun Certified System Administrator for the Solaris 10

i want to take certificate which are: Solaris 10 OS . Part I - Sun Certified System Administrator for the Solaris 10 Operating System (CX-310-200) . Part II - Sun Certified System Administrator for the Solaris 10 Operating System (CX-310-202) ; my question is about S10 adminitration... (0 Replies)
Discussion started by: nibiru78
0 Replies

10. UNIX for Dummies Questions & Answers

Certified Systems Administrator (CSA) - HP-UX v11

Hi Gues I Want To Go For Hp Unix Certification (as A System Admin) But I Dont Even Have Primary Knowlege Of Unix Please Guide Me From Where I Should Start Any Book U Can Suggest Me????????? Even I Dont Have Much Information About The Hp Certification Please Provide Me The Information For... (2 Replies)
Discussion started by: a_khante
2 Replies
Login or Register to Ask a Question
mknod(1M)																 mknod(1M)

NAME
mknod - create special files SYNOPSIS
name major minor name major minor name DESCRIPTION
The command creates the following types of files: o Character device special file (first form), o Block device special file (second form), o FIFO file, sometimes called a named pipe (third form). name is the path name of the file to be created. The newly created file has a default mode that is readable and writable by all users(0666), but the mode is modified by the current setting of the user's file mode creation mask (see umask(1)). Character and Block Special Files Character device special files are used for devices that can transfer single bytes at a time, such as nine-track magnetic tape drives, printers, plotters, disk drives operating in "raw" mode, and terminals. To create a character special file, use the argument. Block device special files are used for devices that usually transfer a block of data at a time, such as disk drives. To create a block device special file, use the argument. The remaining arguments specify the device that will be accessible through the new special file: major The major number specifies the major device type (for example, the device driver number). minor The minor number specifies the device location, which is typically, but not always, the unit, drive, and/or line number. The major and minor values can each be specified in hexadecimal, octal, or decimal, using C language conventions (decimal: no leading zero; octal: leading zero; hexadecimal: leading The assignment of major and minor device numbers is specific to each HP-UX system. Refer to the System Administrator manuals supplied with your system for details. Only users who have appropriate privileges can use to create a character or block device special file. FIFO files To create a FIFO (named pipe or buffer) file, use the argument. You can also use the command for this purpose (see mkfifo(1)). All users can use to create FIFO files. WARNINGS
Access Control Lists In HFS file systems, optional ACL entries can be added to special files and FIFOs with the command (see chacl(1)). In JFS file systems, optional ACL entries can be added to special files and FIFOs with the command (see setacl(1)). However, system programs are likely to silently change or eliminate the optional ACL entries for these files. SEE ALSO
chacl(1), mkdir(1), mkfifo(1), setacl(1), umask(1), lsdev(1M), sam(1M), mknod(2), acl(5), aclv(5), mknod(5). HP-UX System Administrator manuals STANDARDS CONFORMANCE
mknod: SVID2, SVID3, XPG2 mknod(1M)