2

I'm running transmission-daemon on a Raspberry Pi running headless Raspbian. I can SSH into it fine, and the FTP server on it runs without a hitch, but I can't use the terminal interface for Transmission to control it. Running:

$ transmission-remote -m
$ transmission-remote localhost -m
$ sudo transmission-remote -m

All give the following error:

Unexpected response: 401: Unauthorized User: deflate, gzip

Any ideas? Or am I using the wrong command? I want to be able to see active torrents, add more, etc.

syb0rg
  • 8,178
  • 4
  • 38
  • 51
Ian Hyzy
  • 205
  • 3
  • 8

2 Answers2

3

Transmission-daemon has a web interface.
If you want a pure command line interface, use transmission-cli
Otherwise if you want to use transmission-remote, you'll need to modify /etc/transmission-daemon/settings.json and modify this line -
"rpc-authentication-required": true, and make the true a false

Lawrence
  • 2,692
  • 15
  • 14
0

If you want to keep "rpc-authentication-required": true for security reasons, you can supply the username and password with the auth flag, e.g. transmission-daemon -m --auth username:password.

It's quite possible that the server could be reachable by others, depending on how things are setup. I would recommend keeping auth on if you're not sure - it can't hurt.

Chris M
  • 131
  • 3