Get information about your root filesystem on Linux very easily. This is very useful.

Get information about the creation date of your root filesystem on Linux The Linux stat(1) utility will print information about your root filesystem. The Birth entry shows when the filesystem was created. This was the start of the Arch Linux installation procedure. ┌──[[email protected]]─[~/Desktop] └──╼ ╼ $ stat / File: / Size: 4096 Blocks: 8 IO … Read more

How to create a loopback filesystem on Linux and store data in it.

Linux can be used to create a nice filesystem inside a file. This can be used to store data on it. This could be used as a bootable filesystem, or whatever you wish. Firstly, run this command to create a 512-megabyte file system. 4.4 Tue Nov 26 jason@Yog-Sothoth 0: $ dd if=/dev/zero bs=1M count=512 > … Read more

How to create a loopback filesystem easily in your home folder. Good for storing files or creating a swapfile.

It is very easy to create a loopback filesystem in your home directory. This can be used to store files, or can be enabled as a swap partition. Firstly, run this command to create a blank file-system image. This will be 524 megabytes. jason@Yog-Sothoth:~/Documents$ dd if=/dev/zero of=myimage.img bs=1024 count=524288jason@Yog-Sothoth:~/Documents$ dd if=/dev/zero of=myimage.img bs=1024 count=524288 Now … Read more