Linux – Tips for Newbie
|
Installations: 1. Download any Linux flavor from internet (For e.g., Fedora or Ubuntu) 2. Write these ISO files onto CDs. (First Disc will be bootable disc) 3. Lets assume that you have more than one partition (c: d: e: f: ) and you want to install it on f: drive then remove all the files and data from that disc, because we are now going to install it on this drive only. 4. Restart your system 5. Insert Linux bootable disc 6. It will start installation using step by step wizard. It is as simple as windows. 7. While installing it will ask you whether you want to manually partition or automatic partition, always select manually, and it will show you your hard disk, now you can easily identify your partitions on which you want to install Linux, select that drive and specify mount point ( / ). Don’t try to make any changes to other drives, it could erase all your data. 8. It will also ask you what packages you want to install, in the Desktop section select KDE and GNOME, and other packages and software as you wish. 9. That’s it, it will get installed and ready for use. Now after installation when you reboot your system it will show OS choices, you can select Windows or Linux from that |
| Tips for Installing Packages If you want to install a rpm package then type this command as root user #rpm -ivh package.rpm or #rpm -Uvh package.rpm to upgrade the existing package You can find many rpm packages at http://rpmfind.net and http://rpm.pbone.net sometimes this might happen that it will not install because of dependencies problem , you can find those dependencies at http://rpm.pbone.net If you have got source code package like packagename.tar.gz then what you will do ? How will you install it? Just go to console and type #cd /location_where_you_have_kept_package for e.g #cd /home/abc #tar fzxv packagename.tar.gz it will unzip and untar the package go into the unzipped directory #cd packagename first of read README file or INSTALL file, it will tell you how to install if it is having config file then type #./configure #make #make install These are some very simple steps to install package. If u have .bin file like RealPlayer.bin then u have to run it like this #./RealPlayer.bin If it doesnt hav Execute permission then execute this command #chmod 777 RealPlayer.bin then Run previous command |
| If You want to get systems information then try below commands using root user for cpuinfo #cat /proc/cpuinfo for memory #cat /proc/meminfo for version #cat /proc/version |
| Some Common Linux Questions 1.how to play mp3 songs for playing mp3 on linux systems such as Fedora or Redhat you need to install xmms player (http://www.xmms.org/) and install mp3 patch for it, (try searching http://rpm.pbone.net it will list all the available rpms (packages) with its dependencies) 2.how to change forgotten root password Restart your system 3.how to mount HDD and CDROM 4.useful commands 5.Browse network using smb4k |
|
Some More Tips 1.If you are new to Linux then try installing Fedora or Mandrake OS, theses are very simple to use 4. You do not have to slavishly type in the whole of a command’s name or the whole of a file’s name if it is an argument to a command. bash can complete these things for you if what you have already typed in is unambiguous. Try for example: |


