13th January 2009
in
Hardware, Networking
If you work on a large network and you get sent to the server room to check out a certain network card, you might get lost in the multitude of network hardware. To find your certain NIC, SSH to the machine in question an[...]
Tags: network, NIC
1 Comment
12th January 2009
in
Hardware, System, cli
If you run Linux off a laptop, you might want to check your battery status alt least once a year:
grep -F capacity: /proc/acpi/battery/BAT0/info
This will output something like
design capacity: &nb[...]
Tags: battery, laptop
4 Comments
2nd January 2009
in
Hardware, cli
You can use a one-string command in Linux to nicely display in CLI the processes that consume your CPU. Use
ps -e -o pcpu,cpu,nice,state,cputime,args --sort pcpu | sed ‘/^ 0.0 /d’
and you will get something l[...]
Tags: cli, CPU, memory, RAM
4 Comments
8th November 2008
in
Gadgets, Hardware
Linux applications do not yet support the newest 2.x Apple firmware for the iPhone and iPod Touch. But if you want to copy images from the Pictures folder, all you need is SSH installed on the device:
scp root@192.168.1.[...]
Tags: apple, images, iphone, ipod touch
1 Comment