So say if I did mkfs.ext4
on a 1 GB file to make an ext4 file system then mounted it and add the file cat.ls
unmounted it and sent it to B computer that did not have sudo (note I will not use fuse) how would the person read the file without mounting it. Edit you can install any ext4 parser, you just can't mount it.
Edit to get the ext 4 file you would run this dd if=/dev/zero of=ext4 bs=MiB count=1024 ;mkfs.ext4 ext4 ; mkdir ext4dir ; sudo mount ./ext4 ./ext4dir ;sudo chown -R $USER:$USER ext4dir ;echo hel > ext4dir/cat.ls ; sudo umount ext4dir
now how would computer b parse the ext4 file or dump the file to a directory
/media/$USER/volumename
? – waltinator Apr 01 '22 at 19:05