Vivek

Results 49 comments of Vivek
trafficstars

try pushing to the `/mnt/pass_through` directory instead of the ` /mnt/media_rw` directory try changing the file permissions & owner uid/gid of the images locally (before pushing) to match the existing...

do you know if your pixel 2's kernel has NFS support? (`cat /proc/filesystems`)

fwiw i am very confident that you can get this working without making changes to the OS or kernel. absolute worst case scenario you can run an FTP or NFS...

one more thing you might consider trying: ``` cat ./some_file.jpg | adb shell /sbin/su --command "cat > /mnt/media_rw/45E3-1D10/some_file.jpg" ``` this might behave differently from `adb push`

(this project has only been tested on the original pixel) can you share the output of the following commands from your device? 1. `getprop ro.product.manufacturer` 2. `getprop ro.product.model` 3. `getprop...

i think the newer android kernels might require selinux to be enabled. we can probably use magiskpolicy to fix this. to confirm this is the case, let's try running the...

Sorry, I haven't had a chance to look into this further. Also, I don't have a Galaxy S20 or any Android 13 device to test. I believe that replacing the...

@chorong761 can you try mounting a FAT32 drive instead of an ext4 drive? it does not require disabling selinux so it may work on your device

another contributor discovered that sdcardfs isn't needed either: https://github.com/master-hax/pixel-backup-gang/issues/32#issuecomment-2576098531

bump @chorong761 were you able to try out the FAT32 mounting script?