Como iniciar o daemon do servidor HTTP FatRat no console?

1

Sou novo no Linux e gostaria de configurar um simples servidor de download no meu RaspberryPi.

Eu instalei o FatRat via:

apt-get update
apt-get install fatrat

Como não estou usando uma GUI no RaspberryPi, preciso iniciar o servidor HTTP para se conectar ao RPi via navegador da web. De acordo com o manual do FatRat, eu preciso fazer isso (fonte: link ):

A: You can use fatrat-conf to set configuration values from the console. The rest can be done through the web interface (this is work in progress in Git!). This is how you can enable the web interface, set the port and change the default password:

fatrat-conf -w remote/enable=true remote/port=PORT remote/password=PASSWORD

Mas quando tento executar o comando

fatrat-conf -w remote/enable=true remote/port=2222 remote/password=mypass

Eu recebo "comando não encontrado"

Ao executar sem GUI (-n = sem GUI)

sudo fatrat -n

Acabei de receber:

FatRat is up and running now

mas o processo está ativo em primeiro plano, então eu não posso mais usar o console, a menos que eu o abandone por ctrl + c

Como posso iniciar a interface da web?

    
por Joudicek Jouda 03.10.2013 / 21:52

2 respostas

0

Para poder iniciar o Fatrat a partir do console SSH, é necessário iniciá-lo usando nohup (ignorando o sinal de desligamento):

sudo nohup fatrat --nogui &

Não consegui alterar as configurações do Fatrat usando o console, então usei o TightVNCServer para o login remoto da área de trabalho e depois mudei tudo por meio da GUI.

    
por 10.10.2013 / 23:15
0

Tente:

sudo fatrat -n &

O "&" personagem envia o processo para o fundo.

    
por 03.10.2013 / 23:17