This may sound a very stupid question, but I have been using Linux for over an year and I am still using it just like Windows. I have absolutely no idea on how to learn more about bash or other Linux internals. Can anyone help me with it? Guide me with how to proceed with learning more about Linux and experiencing its full strength as they call it.
5 Answers
You need some quick and high return projects to work on.
If you'd like to learn about the behind the scenes aspects let me suggest that you install a server version of *nix. Ubuntu 9.10 Server edition is a solid choice. Then choose projects to work on that aren't overly complicated and will provide you with a high yield of experience in a short period of time.
Here are the projects that I typically suggest when I hire new staff members who have little or no experience with Linux (in order of complication):
- install and configure ssh with a banner and limited user access
- install and configure vsftpd, verify it works for local users
- install a Lamp environment and set up two virtual hosts
- create a user that has sudo privileges to restart apache and mysql
- create a bash script that will backup and gzip you database files.
- study your log files (install and config Logwatch for help)
As for bash specifics there are oddles of books and sources on the topic. Try the following projects:
- find the first 100 prime numbers
- organize a flat file with dates - remove slashes and split into columns
- create a bash script and echo the results to an email address using a cron.
Final point, be creative with your projects. You'll learn more if you pick what seems fun rather than hard. Eventually the hard projects will be fun because the learning curve will be low from all of your previous experience.
- 2,975
You need to generate ideas about what do you want to do from the command line. Think about the applications (like building a media server/mail server ) or something that would expose you to the finer details of the linux system.
Secondly you can hang around in linux forums (like ubuntu forums ) and try to solve the problems posted there, thereby learning and helping the cause at the same time.I am not saying you'll be able to understand/do everything that is posted in these forums, but you'll learn in the process - our primary motive.
There are already some good answers on Server Fault on this topic. Here are two post that give you resources to learn from:
And here is a post which expresses some difficulties when changing from Windows to Linux:
As a Windows administrator, what were the issues you encountered with trying to learn a linux distro?
This might give you some hints about where to start learning.
I'd recommend magazines to get a feel for what happens in linux land, though I don't know where you live. LWN is available everywhere.
For administration specifically, I recommend following some of the tutorials on debian administration.
- 4,495