Search Results

0
votes

When running ls -l, why does the filesize on a directory not match the output of du?

4096, in your example, is the number of bytes used by the directory itself. In other words, this is the space required to store the list of items contained in the directory. It is not …
1
vote

Using ls to list directories and their total sizes

The command you want is 'du -sk' du = "disk usage" The -k flag gives you output in kilobytes, rather than the du default of disk sectors (512-byte blocks). The -s flag will only li …
2
votes

Temporarily suspend the PC operating system.

There are lots of really ugly ways to do this. You could modify the running kernel by writing some trampoline code to /dev/kmem that passes control to your application. But I wouldn't recommend a …
1
vote

Reading binary files, Linux Buffer Cache

It appears to take a correct amount of time the first time the file is read. On that first read, you're reading 150GB in about 2 minutes. That works out to abo …