Date: August 28, 2007. Categories:
docs.
Freely available in pdf and html book about how to Run a Successful Free Software Project can be found here.
Producing Open Source Software is a book about the human side of open source development. It describes how successful projects operate, the expectations of users and developers, and the culture of free software…

Which Linux distros do we use on our home or office desktop system(s)? And what is the most popular one? Congratulations, Ubuntu!

More information is here.
I’ve noticed that when I keep ssh sessions that I opened before untouched for some period of time (like 30 minutes) they become frozen and as a result I have to close ssh terminal and start a new connection. To prevent such situation I found several tips:
1) Start some utility updating the screen before leaving ssh session untouched. I usually use watch -n 1 ‘date’ that shows current date every second. Other simple way is to send icmp requests to some host, e.g. ping google.com.
2) Increase ssh session idle time by
echo “7200″ > /proc/sys/net/ipv4/tcp_keepalive_time
I’ve checked these tips with Fedora Core, CentOS, Debian and Ubuntu but I’m completely sure that it applicable also for other Linux distributions. First tip (ping) can be used in Unix also.
You may also be interested in:
Secure shell (ssh) connection without password
Keep ssh session saved (Unix “screen” utility)
Moving Linux to remote server (over ssh via third server)
Date: August 27, 2007. Categories:
linux and sites.
Here is a nice web site that may be useful for users who are going to switch to Linux from Windows.

If you would like to download large file like HD Video or Linux ISO image while you’re working at your Linux PC or laptop I recommend to use the following command:
wget -c -b “http://file/you/wish/to/download.ext” –limit-rate=100k
Where, -c will continue getting partially-downloaded file (if connection was dropped or smth else), -b will put wget downloading into background, –limit-rate=100k will limit downloading speed at 100 KBytes per second (KB/s).
P.S. man wget still works