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
7th November 2008
in
Hardware, Networking, cli
We’ve all been there: you want to umount a certain device and you’re being told the resource is still being used. Maybe you forgot to close the Nautilus window or maybe you are still accessing the device from[...]
Tags: devices
1 Comment
7th November 2008
in
Hardware
During time, even Linux systems suffer from file fragmentation. To check the file fragmentation level of a certain file use
filefrag -v filename
[...]
Tags: ext3, files, fragmentation
No Comments