atualizações para o fuse.conf não estão disponíveis

2

Estou tentando adicionar o seguinte para que eu possa usar meu Nexus 4 com o Ubuntu. Mas a mudança em /etc/fuse.conf não parece ser capturada pelo sistema. Veja abaixo.

system76:~$ sudo tail -1 /etc/fuse.conf; id -a; android-connect

user_allow_other

104(fuse)

fusermount: failed to open /etc/fuse.conf: Permission denied
fusermount: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf

O que estou perdendo?

    
por user167582 16.06.2013 / 04:42

2 respostas

1

edite seu /etc/fuse.conf com as seguintes modificações.

# Set the maximum number of FUSE mounts allowed to non-root users.
# The default is 1000.

mount_max = 1000

# Allow non-root users to specify the 'allow_other' or 'allow_root'
# mount options.

user_allow_other

Quero dizer, basta remover o hash (#).

    
por rɑːdʒɑ 17.06.2013 / 14:57
1

Para pegar o arquivo conf, você precisa adicionar seu usuário ao grupo "fuse".

sudo addgroup <username> fuse, 

Você também precisa relogar

sudo pkill -u username
    
por Tahir Rauf 06.09.2015 / 20:51