I’ve been using Terminator for quite a long time now and I find it very usefull.
Install it in Ubuntu by running:
Shell
1
sudo apt-getinstall terminator
There is a feature I would like to see in the future releases: saving the layout of the window or maybe a way to start the application with the predefined number of tabs.
aria2 is a command line utility for downloading files. The supported protocols are HTTP(S), FTP, BitTorrent (DHT, PEX, MSE/PE), and Metalink. To install it on Ubuntu, just type in terminal:
Troubleshooting, upgrading, or just curious? Find out what’s in your system without opening the case. Using these Linux command line tools, you can get details about your hardware and distribution.
I’ve tested these commands in Ubuntu 7.10, but they should all work in other Linux distributions. Unless noted otherwise, all of this software is included by default with Ubuntu.
Graphics card:
Shell
1
glxinfo
– details about OpenGL, the Xserver, and your graphics card
Shell
1
glxinfo|grepdirect
– do you have direct 3d rendering?
Shell
1
glxinfo|grepvendor
– graphics card vendor
Shell
1
lspci|grepVGA
– specific graphics card model
Shell
1
glxgears
– a simple 3d benchmark, prints frame rate to the terminal
Shell
1
xrandr
– supported display resolutions
Audio:
Shell
1
lspci|grepAudio
– audio controller
Shell
1
aplay--list-devices
– more audio device information
Software versions:
Shell
1
cat/etc/issue
– current distribution and version
Shell
1
apt-cache showpkg packagename
– packagename’s version and dependencies
Shell
1
uname-r
– Linux kernel version
Shell
1
uname-a
– all kernel details
Networking:
Shell
1
lspci|grepEthernet
– Ethernet controllers
Shell
1
ifconfig
– networking interfaces, IP addresses, and more
Processor:
Shell
1
cat/proc/cpuinfo
– all processors, clock speeds, flags, and more
Shell
1
cat/proc/loadavg
– processor load average for the last 1, 5, and 15 minutes
Shell
1
top
– press C key to sort processes by CPU usage
Memory:
Shell
1
cat/proc/meminfo
– amount of RAM and swap, and how much is being used for what
Shell
1
free-m
– total, used, and free memory shown in MB
Shell
1
top
– press M key to sort processes by memory usage
Hard disks:
Shell
1
df-H
– partitions, as well as their mount-points and usage in GB
Shell
1
sudo fdisk-l
– all partitions, their device names, and positions on disk
USB devices:
Shell
1
lsusb
– USB buses and attached devices
Even more:
Shell
1
lshal-m
– monitor for hardware changes
Shell
1
lspci
– all PCI devices
Shell
1
hwinfo--short
(install from package hwinfo) – overview of all hardware, as well as more detailed info
Shell
1
lshw
– another program for listing hardware
Shell
1
lshw-html|w3m-Ttext/html
– lists hardware with HTML output in the w3m web browser
Shell
1
uptime
– current time elapsed since last reboot, users, and load average