Why do I use GNU/Linux?
LaTeX xev diff strip
How to use Hangul in Mozilla 1.5?
How to install print program on the fresh LFS system?
Why do I use GNU/Linux?
I've been using Linux since 1991. At that time, it was the beginning of Internet. I used to download 'Slackware Linux installation 5.25" disks through 2,400 bps modem from the Hitel ISP. After several times of installation trial on a IBM compatible 80386 PC for a week, I booted up Linux finally and amazed at seeing the X Window screen. The only the fact I was running X Window made me feel so good. The workstations in the school lap always showed authority for whom has power - professors, instructors, lap workers. Using X Window in PC was impossible for students who could not afford to buy a workstation - Solaris, Irix. As I met Linux first time, I saw the potential of GNU/Linux in future.
It passed over 10 years. I had worked as a computer programmer until 2000. Luckily the last company I worked was running Linux business. If I liked computer than Freedom, I would have worked for the company still. I have been out of computer business since I moved to Canada in 2001. But, I'm still use Linux everyday.
I believe the OS (Operating System) should be free for general public like GNU/Linux or FreeBSD do. I think GNU/Linux is an airplane, and the commercial OS is a car. There is a huge difference. In the sky where there is no speed limit neither signs the pilot has to follow: balloon, fixed-wing airplane, airliner. Freedom is very hard to get. I prefer to say having freedom is having power.
strip
It removes unnessary data from object files such as executable or library files. In some cases, strip reduces a file over 50% of its original size. It's worth to use for saving space after installing new package especially big library.
LaTeX
This site introduces about LaTeX guide documents for beginner. The web address is
http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/LaTeX_intro.html
I recommend "LaTeX for Word Processor Users" on the above web site.
xev
It's a program that shows the key code in X-Window.
How to use diff command?
Compare two files.
$ diff old.txt new.txt > oldnew.patchPatches in unified format.
$ diff -u old.txt new.txt > oldnew.patchCompare two source trees
$ diff -ruN ./old ./new > tree.diffPatch entire tree
$ patch -0 -u < tree.diffUnapply the patch
$ patch -p0 -R < tree.diff