Erro ao tentar instalar o opencv

2

Estou tentando seguir o procedimento conforme indicado no guia de instalação link Enquanto tentava fazer a configuração do Path, tentei criar um arquivo opencv.conf em /etc/ld.so.conf.d/ contendo uma única linha / usr / local / lib. Mas assim que eu salvo, recebo uma mensagem de erro:

vineet@vineet-XPS-M1530 /etc/ld.so.conf.d $ sudo gedit opencv.conf

(gedit:3765): Gtk-WARNING **: Attempting to store changes into '/root/.local/share/recently-used.xbel', but failed: Failed to create file '/root/.local/share/recently-used.xbel.L45S9V': No such file or directory

(gedit:3765): Gtk-WARNING **: Attempting to set the permissions of '/root/.local/share/recently-used.xbel', but failed: No such file or directory

(gedit:3765): Gtk-WARNING **: Attempting to store changes into '/root/.local/share/recently-used.xbel', but failed: Failed to create file '/root/.local/share/recently-used.xbel.U5FA9V': No such file or directory

(gedit:3765): Gtk-WARNING **: Attempting to set the permissions of '/root/.local/share/recently-used.xbel', but failed: No such file or directory

(gedit:3765): Gtk-WARNING **: Attempting to store changes into '/root/.local/share/recently-used.xbel', but failed: Failed to create file '/root/.local/share/recently-used.xbel.2ITB9V': No such file or directory

(gedit:3765): Gtk-WARNING **: Attempting to set the permissions of '/root/.local/share/recently-used.xbel', but failed: No such file or directory
vineet@vineet-XPS-M1530 /etc/ld.so.conf.d $ 

Eu sou novo no linux. Por favor, me diga como fazer isso.

    
por bubble 16.02.2012 / 17:06

1 resposta

2

Isso porque você está usando sudo para abrir um arquivo usando um editor de texto gráfico.

Quando você fechar gedit , ele tentará salvar o arquivo mais recente (o que você está editando) em um histórico de arquivos editados recentemente. Porque esse arquivo não existe, ele falha.

A solução para isso é usar gksudo , que é feito para abrir aplicativos gráficos com sudo de direitos e configuração do usuário.

Abra o arquivo com gksudo gedit opencv.conf em vez de sudo gedit opencv.conf .

    
por Bruno Pereira 16.02.2012 / 17:14