Daily Archives: April 6, 2025
There are plenty of questions here asking for how to list all mounts, which mostly get answered with /proc/mounts or similar. But this list is not complete. I want to know every block device that is mounted, even if it is not mounted for my process or the mount is […]
I have seen this other Super User question, but it does not really answer my question. Running blkid can list both partitions and partition labels on a disk: ubuntu@ubuntu:~$ sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL ... sda 111.8G ├─sda1 vfat 350M SYSTEM ├─sda2 ntfs 50G Windows ├─sda3 ntfs 1.5G Recovery ├─sda4 1K […]
This is my backup command: sudo rsync -avh --progress --stats --delete-before /mnt/source/ /mnt/backup/ /mnt/source and /mnt/backup are identical disks with identical size. But after major file operations (e. g. accidental change of datetime stamps of all files in a big directory somewhere below of /mnt/source), the backup fails because the […]
All files on centos are owned by me, goofy/domain. Uploading a plugin to the server using Filezilla caused one of the files to appear on server as apache/apache rather than goofy/domain. How/Why does this happen? How to prevent this from happening? Now that it has happened and I no longer […]
I want to manually (not programmatically) add or edit an entry in a mobile (Android) browser’s local storage. I know how to do that on a Desktop browser and I know how to programmatically do that cross-platform. Is there any mobile browser that would let me do that? If so, […]