I know a lot of people are raving about Mozilla Firefox, and some of it is surely because a lot of people hate Microsoft, but I found something pretty useful I'd like to share.
I was downloading a file this evening, and the file seemed to get stuck. It was a short file, so I didn't mind downloading it again. I was a bit irritated, because I thought that I'd have to switch between the Firefox download manager, and the web page with the file link. Switching is really no big deal, it just takes time to move the mouse to the link and resave. B U T... I didn't have to switch away from the download manager. After I clicked cancel, a link appeared to try the same download again. I've probably skipped over this small detail a million times before because I really didn't want the download, but this time I did, and the file started downloading again, this time to successful completion. The download manager is actually something I find irritating about Firefox. I've never liked download managers. Just download the file and close the window, that's my philosophy.
I've also been doing a lot of reading about IRC, Internet Relay Chat. I've used IRC for years, and before that multi-line chat on Bulletin Board Systems (BBS) independent of the Internet, but I've never been the blow-hard some have been. It's a cool tool. Anyway, I decided to launch xchat from the command line. I still wanted to use the command line session so I appended an & symbol to the end of the command. Here's the session:
charm@linux:~> xchat &
[1] 13265
Again, this is something I've done a lot before, but never paid much attention to. Then I got thinking..."I bet that number is the process number of xchat. Hmmn, that means I could probably kill xchat using that process number. What a cool and useful thing to be on the command line!" Okay, it probably didn't go quite like that in my mind, but something close. So I did a process list:
charm@linux:~> ps aux | grep xchat
charm 13265 15.0 4.6 22296 11884 pts/1 S 23:38 0:01 xchat
charm 13271 0.0 0.2 2692 680 pts/1 R+ 23:38 0:00 grep xchat
charm@linux:~>
Sure enough 13265 is indeed the xchat process, and I could kill it using kill 13265. The second process listed was the search/grep I just conducted. It was shown because it also contained the word xchat.
These are just a few more reasons why I like Linux.