Не имеет дело с инструкцией fusemount - PullRequest
0 голосов
/ 01 мая 2020

Я учусь монтировать диски в FUSE, здесь я нашел пример:

https://github.com/skorokithakis/python-fuse-sample

Но при запуске он выдает мне следующую ошибку :

tutu@tutus:~/python-fuse-sample-master$ python passthrough.py ~/disk-images/ /mnt/disco

fuse: mountpoint is not empty

fuse: if you are sure this is safe, use the 'nonempty' mount option

Traceback (most recent call last):

  File "passthrough.py", line 134, in <module>

    main(sys.argv[2], sys.argv[1])

  File "passthrough.py", line 131, in main

    FUSE(Passthrough(root), mountpoint, nothreads=True, foreground=True)

  File "/home/tutu/.local/lib/python2.7/site-packages/fuse.py", line 711, in __init__

    raise RuntimeError(err)

RuntimeError: 1

И я не знаю, почему он посылает мне эту ошибку.

...