What is the most popular SSH Client for Windows?
Answer:
Definitely it is PuTTY: http://www.chiark.greenend.org.uk/~sgtatham/putty/
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
What is the most popular SSH Client for Windows?
Answer:
Definitely it is PuTTY: http://www.chiark.greenend.org.uk/~sgtatham/putty/
What is the euqivilant of i-tunes for Linux?
Answer:
There are many, but I would suggest Rhythmbox
What Linux distribution is the best for home audio/video processing?
Answer:
For normal users, Ubuntu: http://www.ubuntu.com/ would be a good choice for audio/video processing.
Also, you may check out 64 Studio: http://www.64studio.com/
A better alternative to top
Answer:
It is the htop : http://htop.sourceforge.net
To install under Ubuntu
# sudo apt-get install htop
Mount a USB drive in Ubuntu using command
Answer:
Ubuntu Desktop will auto discover the USB drive when you connect to the computer. However, if you are using server with only access to the shell, you can still mount it manually.
1. Find out the correct device using the fdisk command. Pay attention to the disk space so you can recognize the correct device easily, e.g. /dev/sdb1
# sudo fdisk -l
2. Create a mount folder
# sudo mkdir /mnt/usb1
3. Finally, mount it
# sudo mount /dev/sdb1 /mnt/usb1
Now you can put files into this folder (/mnt/usb1) and it will be saved in your USB drive.