ish
ish copied to clipboard
mounting a folder isn't working
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:~#
.
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.