Posts Tagged ‘linux administrator’
Learn Linux Certifications

- Image via Wikipedia
There are currently four programs that enable people to become certified as Linux Systems Administrators. These programs are offered by the Computing Technology Industry Association, the Linux Professional Institute, the Novell Corporation, and Red Hat, Inc. The first two are professional industry associations whose certification programs do not depend on any specific Linux distribution. Novell and Red Hat Linux certifications are closely associated with their popular Linux distributions. Should you wish to prepare for either of these two certifications you will definitely need access to their Linux version.
What’s involved in obtaining a Linux Certification? You must pass one or more extensive tests that demonstrate your prowess in dealing with the typical and some atypical problems faced by Linux systems administrators. The test is designed to validate the knowledge of individuals with a minimum of six to twelve months of practical Linux experience not just for those who only learn linux without practice. We’ll take a closer look at the CompTIA Linux+ Certification, the one often recommended as the first certification for people new to Linux. This certification does not apply to any specific Linux version. According to the Computing Technology Industry Association, linux administrator professionals achieving the CompTIA Linux+ certification can explain fundamental management of Linux systems from the command line, demonstrate knowledge of user administration, understand file permissions, software configurations such as linux mount, and management of Linux-based clients, server systems, and security.
The Linux+ certification is a basic, entry-level certification for Linux system administrators. It is intended for people with six-months experience installing, operating and maintaining Linux operating systems. To achieve Linux+ certification, candidates must pass the 98 question Linux+ exam which covers seven areas: Planning and Implementation; Installation; Configuration; Administration; System Maintenance; Troubleshooting; and Identify, Install and Maintain System Hardware. This multiple-choice exam costs about $232 and is a good starting point for those who want to continue with other Linux certifications including those from Novell and Red Hat.
Why would anybody want to start preparing Linux certification on a limited version of Linux? The answer is simple – certification is not to be taken lightly. Don’t make a major financial and time investment unless you know that you really want to be certified and that you possess the required skill set. It’s not hard to find schools that promise you success in Linux certification and in any of their course offerings. But Linux certification may not be for you. Don’t make a major certification investment only to find that it wasn’t what you had in mind. Work your way through my tutorials including the suggestions for going further. Get your hands on a variety of Linux books. I would start with books designed for learning Linux and for running Linux systems before working with Linux certification books.
Don’t be satisfied with running computer exercises in your mind, and nodding your head at the appropriate times. To succeed you must do the exercises on a computer running Linux. Since installation is a component of all Linux Certification exams don’t stint on installing several versions of Linux on your computer. An external USB hard drive is not very expensive. Try to make friends with someone who knows better than you how to do things. Ask a lot of questions. And good luck!
Priyo Wibowo | IT Consultan
Other related articles:
- JUnit pain « Otaku, Cedric’s weblog – public MyTest(String name) { super(name); System. and you will see Created a MyTest displayed twice. If I want two test methods to be truly independent, I will just put them in two different classes.
- Amanda McPherson’s Linux Foundation blog · How To Learn Linux From … – How To Learn Linux From the Developers of Linux. (For Free.) January 26, 2010 in McPherson. The Linux community is a pyramid. The base is comprised of millions of. Linux users and system administrators. The second level is programmers …
- Wendy’s Blog: Legal Tags » Forbidding Vistas: Windows licensing … – Reading the Windows Vista license is a bit like preparing for breakfast with Lewis Carroll’s Red Queen: You should be ready to believe at least six impossible things about what users want from software. …
- Pitfalls to Installing Everything – The purpose of this article is to explain the potential problems in installing every package that comes included in any given Linux distribution. For the most part, this is a bad practice and is not conducive to becoming proficient in …
- Questions about Windows + Apache « Andrew Grumet’s Weblog – We had some problems ramping up traffic on a Windows + Apache server that I set up last week. Apache would respond normally for a while, then start dropping requests and/or refusing connections. My first thought was that that I’d gotten the configuration wrong, or that Apache/Win32 was buggy.
- The Watchtower of Destruction: The Ferrett’s Journal – If Nerds … – If Nerds Can Learn Linux, Why Can’t They Learn Not To Interrupt People? After my rant on The Big Bang’s nerdy ol’ Sheldon Cooper yesterday, a couple of people wondered: If nerds can master such arbitrarily complex things as the Linux …
- want to learn linux? start with gentoo – donnie explains why brillliantly here: in the same way, automated tools suck. they’re great once you understand the black box they hide from you, but ignoring that black box entirely is a route to disaster. …
- Comment on How I became the only RHCE in the paradise islands of … – Congrats…. Nice opening with you. I am trying to learn Linux I have very much impressed to your article… try to help newbies…. feel free to contact Muralitharan.
- ubuntu on my dell 700m finally! – well, i’ve gone back to linux and of course it wasn’t pretty. driver support just will never be as fast as it is for windows. sorry but it is true. so, i spent sometime trying not to give up and switch back to windows. …
- tecosystems » Solaris + Gentoo = A Big Deal – Before people get carried away, relax no one’s talking about merging the two. Instead, the focus is on porting what I consider to be far and away Gentoo’s distinguishing feature it’s package management application, Portage to Solaris. Without going down too much of a rathole, Portage draws on BSD’s ports system, and is similar in functionality to Debian’s apt-get or NLD/SuSE’s Red Carpet channels.
- visual studio – so, i’ve been doing some work on a network visualisation program called bsod (don’t ask), cleaning up code here, tweaking some stuff from there. anyway i’ve got it running well under linux. the final thing to do before a new version is …
Understanding Linux Filesystems
The Default Linux File Systems (Filesystems)
The default filesystems that are recognized by Linux are specified in the text file named filesystems in the /proc directory.
Four of the filesystems that are commonly found on a Linux system are: ext2 (old and less common), ext3 (very common), iso9660 and swap.
Some Linux distributions also use other filesystems.
For example, instead of the ext3 filesystem, the SUSE and openSUSE distributions use the reiserfs filesystem by default.
In addition to the above linux filesystems, by default Linux can also recognize a partition that is a “swap” partition.
Depending on the documentation that you are reading and the command or utility that you are using, “swap” is not typically considered to be a filesystem type. It is a type of partition that is treated by the OS as virtual memory (where hard disk storage space works as though it is RAM memory).
The following is a description of some of the commonly used Linux filesystems.
ext2 (second extended filesystem) supports UNIX/Linux files and directories and allows for long file names (up to 255 characters).
ext3 (third extended filesystem) is the current default filesystem for Red Hat, Fedora and many other Linux distributions. The ext3 filesystem is on the way to becoming the de facto standard for Linux.
ext3 is based on the previous ext2 filesystem. It is basically the same as ext2, with the main difference being that ext3 supports a feature called “journalling”. The greatest benefit of this feature is that it provides a quicker recovery when a filesystem “crash” occurs and a system goes “down” (and stops working).
If files are corrupted on a partition using ext2, then the Linux fsck (filesystem check) utility is run to check the filesystem and repair it and this can take a very long time.
When the files on an ext3 filesystem become corrupted, then the fsck utility is still run to check and repair the filesystem, but this takes much less time due to the journalling feature of ext3.
vfat is the Linux filesystem that is compatible with DOS file names and Windows long file names. In some Linux utilities, “vfat” appears as “fat” or “fat32″.
iso9660 is the filesystem used on a CD-ROM.
swap (a.k.a. Linux swap partition, swap drive, swap space) is a disk partition that is used by the Linux OS as “virtual memory”. Linux uses the disk space that you have specified for the swap drive as though it were RAM (memory chips in your system).
The Linux filesystem type concepts and definitions covered here apply to: Ubuntu, Debian, Red Hat, Fedora, SUSE, Slackware, openSUSE – and ALL other Linux distributions.
If you are want to become Linux administrator then you like to know more about linux mount as well.
Other related articles:
- The Musings of Chris Samuel » Blog Archive » Comparing NTFS-3G to … – I was wondering whether FUSE was being a bottleneck in my various ZFS-FUSE tests or whether the performance issues at present are just that ZFS is very young code on Linux and that the fact that Riccardo hasn’t yet started on …
- A guide to files and folders on Linux « Blog « Peter Upfold – In my second tutorial about Linux, I’m going to look at files and folders and how they work on Linux because it’s very different compared to the Windows way of C:, D:, and E: etc. Basically, in Linux (and other Unix-based systems, but I’ll keep it simple for now), there aren’t different drives. In Linux, everything you can access stems from the top folder in the stack.
- Felipe Alfaro Solana » Blog Archive » Installing Ubuntu Linux on a … – codeThis article describes how to install Ubuntu Linux on a MacBook Pro laptop. Although I chose Ubuntu Linux as the Linux distribution, you can easily replace that for whatever distro you like the most. It’s only a matter of choice and …
- Open Source Security » Blog Archive » eCryptfs in Fedora 8 – One of the most exciting new features in Fedora 8 will be eCryptfs. I downloaded the latest test release of Fedora 8 just to try it out. Mike Halcrow has done a terrific job writing the code, getting it and design documents reviewed and …
- An Amazon EC2 cluster for BLAST searching ? at Your bones got a … – Ideas are cheap, implementation is expensive; act accordingly. FriendFeed « Snow day Dapper : the screen scraper for everyone » Warning : join() [function. I’ve just been reading about the new Amazon Elastic Compute Cloud (EC2), which is essentially a pay-as-you go cluster, based on Xen virtual machine images.
- GRUB error 17 | hertenberger.co.za – GRUB is a boot-loader, assisting in the selection of available operating systems on your PC. There are a couple of others, but the GRand Unified Bootloader.
- The Musings of Chris Samuel » Blog Archive » ZFS Disk Mirroring … – This is the third in a series of tests1, but this time we’re going to test out how it handles multiple drives natively, rather than running over an existing software RAID+LVM setup. ZFS has the ability to dynamically add disks to a pool …
- Use lshw (Hardware lister) to get detailed information on the … – Use lshw (Hardware lister) to get detailed information on the hardware configuration of your Linux system. There are many ways you can find our various information about the hardware configuration of a Linux system. …
