ish-app / ish

Linux shell for iOS
https://ish.app
Other
16.91k stars 890 forks source link

mounting a folder isn't working #2361

Closed hsarji closed 2 months ago

hsarji commented 6 months ago

mount -t ios . /mnt isn't working as expected. The dialog to choose a directory opens and allows me to navigate to a directory and click on Open, but iSh remains at localhost:~#.

lewhfree commented 6 months ago

The command you have included mounts the chosen folder at /mnt ​ another way to do it would be
localhost:~ # mkdir mountedFolder localhost:~ # cd mountedFolder localhost:~/mountedFolder # mount -t ios . . ​ That should work.

Mnpn commented 2 months ago

Hi! As mentioned above, you have mounted it to the folder /mnt, which is not where you are (your home folder, ~). You'll find the files in /mnt. If you want to go there, cd /mnt.