Linux What is Linux? Linux, pronounced Linnucks, is an operating system, which is free or nearly free and is distributed in source form. Linus Torvalds, a Finnish computer science student, began work on a kernel for a Unix-like system in the early 1990s and finally finished it with other programmers around the world. The kernel had been integrated with other GNU software, which was founded by MIT scientist Richard Stallman, to produce a fully functional operating system, which called Linux. The first Linux version was released in March of 1994. Installation of Red Hat 7.1 To install Linux on your computer is not that difficult if you have some basic knowledge about your computer. Red Hat is the most popular Linux today and it makes the installation easier. When you want to install Linux and don't want to discard the operating systems you are familiar with on your computer, things maybe become a little bit difficult. First, you should get enough hard disk space for Linux. Then you have to assure the free space is using Linux partition not FAT or NTFS. Luckly, PartitionMagic is a very good tool to do those things. Red Hat requires you to define three partitions: boot, swap, and file partitions during the installation. Lilo is suggested not to place at MBR. After installation, you'd better read some documents at /usr/doc/HOWTO. To let Linux live with MS Windows, lilo should be installed at its own root partition not MBR. Use the following commands to boot it up with Windows. #mount -t msdos /dev/hda1 /mnt/c //mount your C: to linux #dd if=/dev/hda7 bs=512 count=1 of=/mnt/c/bootsect.lnxChange boot.ini on C drive by adding a line C:\bootsect.lnx="Linux" . Read only property should be changed also. Reboot your computer and you will enjoy multi-boot operating systems. Basic of Linux Installation of applications#cp filename.tar.gz /root #tar xvzf filename.tar.gz #./configure #make #make install #make clean #make distclean Exit the system adduser newuser Command Function vi Esc - Cmd/Text tar and rpm # tar cvfz backup.tar.gz /etc/ # rpm -ivh //install
Compile C, C++, Java #vi {xxx.c, xxx.cpp, xxx.java} #cc -o exefile xxx.c #javac xxx.java Database
Tech Web Sites RPM packageEric S. Raymond's Linux Reading List HOWTO Gary Singleton's Gary's Place: Linux News Tips and Links Joshua Go's Linux Guide Linux Documentation Project Linux Journal Web Page Linux Journal's Linux Gazette Linux Resources Linux Web Ring Linux Weekly News Renaissoft's Linux Resources Robert Kiesling's Linux Frequently Asked Questions with Answers (FAQ) Newsgroup FAQs, HOWTOs, READMEs, etc. - comp.os.linux.answers |