não pode instalar o aplicativo utorrent no ubuntu 14.04

0

ao ver os tópicos anteriores, tentei os passos mas obtive este erro.

sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver
utserver -settingspath /opt/utorrent-server-v3_0/
bash: /usr/bin/utserver: No such file or directory

este é o erro. tentou pelo menos 10 vezes, mas não consegue resolver o erro. por favor ajude.

saída de: ls -la / usr / bin / utserver

shiril @ Shiril-PC: ~ $ ls -la / usr / bin / utserver lrwxrwxrwx 1 raiz raiz 34 ago 2 16:57 / usr / bin / utserver - > / opt / utorrent-server-v3_0 / utserver

Eu tentei as etapas acima e obtive o seguinte resultado ...

shiril@Shiril-PC:~/Downloads$ sudo rm -r /opt/utorrent-server-v3*
rm: cannot remove ‘/opt/utorrent-server-v3*’: No such file or directory

shiril@Shiril-PC:~/Downloads$ sudo tar xf utserver.tar.gz -C /opt

shiril@Shiril-PC:~/Downloads$ ls -la /opt
total 16
drwxr-xr-x  4 root   root   4096 Aug  4 03:14 .
drwxr-xr-x 24 root   root   4096 Aug  3 04:39 ..
drwxr-xr-x 30 root   root   4096 Aug  1 11:17 lampp
drwxrwxr-x  3 shiril shiril 4096 Jan 15  2014 utorrent-server-alpha-v3_3

shiril@Shiril-PC:~/Downloads$ sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver

shiril@Shiril-PC:~/Downloads$ % utserver -usage
bash: fg: %: no such job

shiril@Shiril-PC:~/Downloads$ % utserver -settingspath /opt/utorrent-server-alpha-v3_3
bash: fg: %: no such job
    
por shiril sukhadeve 02.08.2015 / 19:05

1 resposta

0

O número da versão foi alterado. Não há mais uma versão 3.0. A versão atual é 3.3. Portanto, eu suponho que você não tem uma pasta /opt/utorrent-server-v3_0

  1. Serviço de limpeza

    sudo rm -r /opt/utorrent-server-v3*
    
  2. Extraia o arquivo novamente

    sudo tar xf utserver.tar.gz -C /opt
    
  3. Verifique a pasta criada em /opt

    ls -la /opt
    

    E.G.

    drwxrwxr-x  4 4096 Aug  2 21:33 utorrent-server-alpha-v3_3
    
  4. Crie o link simbólico e use o nome correto da pasta, veja o ponto 3.

    sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver
    
  5. Isso é tudo

    utserver -usage

    Locale LC_CTYPE=en_US.UTF-8;LC_NUMERIC=de_DE.UTF-8;LC_TIME=de_DE.UTF-8;LC_COLLATE=en_US.UTF-8;LC_MONETARY=de_DE.UTF-8;LC_MESSAGES=en_US.UTF-8;LC_PAPER=de_DE.UTF-8;LC_NAME=de_DE.UTF-8;LC_ADDRESS=de_DE.UTF-8;LC_TELEPHONE=de_DE.UTF-8;LC_MEASUREMENT=de_DE.UTF-8;LC_IDENTIFICATION=de_DE.UTF-8
    330B (30470) 2014-01-14 09:10:15 -0800
    Usage:  utserver -settingspath -logfile -configfile -pidfile -daemon -usage
        settingspath - location of settings directory
        logfile - location and name of log file
        configfile - location and name of configuration file
        pidfile - location and name of file to contain process ID
        daemon - run process as a daemon
        usage - print this message and exit
    

    Inicie o servidor (e use o nome correto da pasta, veja o ponto 3)

    utserver -settingspath /opt/utorrent-server-alpha-v3_3

por A.B. 02.08.2015 / 21:30