[Part 3] Download torrent & newsserver packages
|
16th Oct, 2013, 06:24 AM
Post: #76
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
(16th Oct, 2013 06:11 AM)mk01 Wrote: system wise all looks ok as I final test you can do: I got no errors Is there really nothing I can do? Transmission always download 4.18 MB before the error. |
|||
16th Oct, 2013, 06:27 AM
Post: #77
|
|||
|
|||
Re: RE: [Part 3] Download torrent & newsserver packages
(16th Oct, 2013 06:24 AM)HerrHoltz Wrote:(16th Oct, 2013 06:11 AM)mk01 Wrote: system wise all looks ok as I final test you can do: I can't tell the solution from mobile but you have to change user to root. I did it from ssh in terminal. But im not anywhere near my laptop with the right info. Sorry |
|||
16th Oct, 2013, 04:03 PM
Post: #78
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
(16th Oct, 2013 06:27 AM)enrique131 Wrote:(16th Oct, 2013 06:24 AM)HerrHoltz Wrote:(16th Oct, 2013 06:11 AM)mk01 Wrote: system wise all looks ok as I final test you can do: If you find time, I would be grateful if you could explain it to me or post a link, because I have no idea how to change user to root (I know how to use ssh). |
|||
16th Oct, 2013, 05:50 PM
Post: #79
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
(16th Oct, 2013 04:03 PM)HerrHoltz Wrote: If you find time, I would be grateful if you could explain it to me or post a link, because I have no idea how to change user to root (I know how to use ssh). edit file /etc/init.d/transmission and change USERNAME=xbian to USERNAME=root Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here |
|||
17th Oct, 2013, 04:46 AM
Post: #80
|
|||
|
|||
Re: RE: [Part 3] Download torrent & newsserver packages
(16th Oct, 2013 05:50 PM)mk01 Wrote:(16th Oct, 2013 04:03 PM)HerrHoltz Wrote: If you find time, I would be grateful if you could explain it to me or post a link, because I have no idea how to change user to root (I know how to use ssh). That's exactly what I did and fix my issue. Thanks for posting it for me :-) |
|||
17th Oct, 2013, 10:40 PM
Post: #81
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages | |||
27th Oct, 2013, 02:53 PM
Post: #82
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
Hey I'm having a little trouble and I was wondering if anyone could help me out basically instead of a usb hard drive I'm trying to connect it to my NAS (wd mycloud) and I went into nano /etc/fstab and added this to it
Terminal //192.168.1.xx/myCloud /media/usb cif user=(id of NAS),pass=(password of NAS) 0 0 and when I try moving a file I get Terminal xbian@xbian ~ $ mv /home/xbian/downloads /media/usb/ mv: cannot create symbolic link `/media/usb/': No such file or directory Maybe I'm just doing this completely wrong |
|||
29th Oct, 2013, 01:26 AM
Post: #83
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
I used chmod 777 on the media folders of my usb harddisk, that way Transmission had full access and I did not have to change user to root. Not sure which solution is the best..
|
|||
9th Nov, 2013, 08:09 PM
Post: #84
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
Suggestion for the Transmission package: do not create the 3 folders
/home/xbian/downloads /home/xbian/incomplete /home/xbian/torrents They are useless since no one will actually use these folders. Now they will have to create links to their storage. But everyone will also have to dive into settings.json to at least change username/password. So it would make more sense to also set the path to your storage in settings.json while you are changing username/password. Why create links to these folders? I always simply remove them. |
|||
10th Nov, 2013, 07:18 AM
Post: #85
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
Another suggestion for Transmission package. I can not think of a reason why not to include this. Its part of my how-to-follow-tvshows+movies-fully-automated guide. But I think anyone using Transmission will like this part, its just 1 .sh file, chmod +x and 2 settings that need to be modified in settings.json:
TRIGGER XBMC TO AUTO-UPDATE LIBRARY WHEN A NEW DOWNLOAD IS FINISHED. XBMC will ONLY update the folder containing the finished download file, so no more need for full "Update Library", which can take some time on the Pi. How? By running a simple script. Transmission can automatically run a script when a torrent is finished downloading. 1. sudo nano /etc/transmission/xbmc-upd.sh (The script needs to be in /etc/transmission/ otherwise Transmission cannot run the script) Now copy this and save it with CTRL+O, exit texteditor with CTRL+X: Code: /usr/bin/wget --header='Content-Type:application/json' --post-data='{"jsonrpc": "2.0", "method": "VideoLibrary.Scan", "id": "xbian", "params": {"directory":"'"$TR_TORRENT_DIR"'/"}}' "http://localhost:8080/jsonrpc" 2. give the file execution permission: sudo chmod +x /etc/transmission/xbmc-upd.sh 3. add it to the etc/transmission/settings.json file: "script-torrent-done-enabled": true, "script-torrent-done-filename": "/etc/transmission/xbmc-upd.sh", |
|||
11th Nov, 2013, 01:37 AM
Post: #86
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
Hey,
Have transmission 2.80 form Xbian package, problem is download speed not exceeding 1 MB/s usually go up to max mb then go back to 0. I read somewhere is transmission bug, port is open, settings.json set up, so how i can update transmission to 2.82 or downgrade it or whatever to fix this annoying issue? Sorry for than kind of question but im brand new to Xbian |
|||
11th Nov, 2013, 02:31 AM
Post: #87
|
|||
|
|||
Re: RE: [Part 3] Download torrent & newsserver packages
(11th Nov, 2013 01:37 AM)pit79 Wrote: Hey, Remove the xbian package and install the regular transmission-daemon, it's older (2.52). Terminal sudo apt-get remove xbian-package-transmission sudo apt-get install transmission-daemon Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
11th Nov, 2013, 11:40 AM
Post: #88
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
(11th Nov, 2013 02:31 AM)f1vefour Wrote:sudo apt-get install transmission-deamon(11th Nov, 2013 01:37 AM)pit79 Wrote: Hey, E: Unable to locate package transmission-deamon |
|||
11th Nov, 2013, 12:47 PM
Post: #89
|
|||
|
|||
Re: RE: [Part 3] Download torrent & newsserver packages
(11th Nov, 2013 11:40 AM)pit79 Wrote:(11th Nov, 2013 02:31 AM)f1vefour Wrote:sudo apt-get install transmission-deamon(11th Nov, 2013 01:37 AM)pit79 Wrote: Hey, It's transmission-daemon not deamon Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
11th Nov, 2013, 01:49 PM
Post: #90
|
|||
|
|||
RE: [Part 3] Download torrent & newsserver packages
(11th Nov, 2013 12:47 PM)f1vefour Wrote:(11th Nov, 2013 11:40 AM)pit79 Wrote:(11th Nov, 2013 02:31 AM)f1vefour Wrote:sudo apt-get install transmission-deamon(11th Nov, 2013 01:37 AM)pit79 Wrote: Hey, LOL +1 |
|||
« Next Oldest | Next Newest »
|
Possibly Related Threads... | |||||
Thread: | Author | Replies | Views: | Last Post | |
[Part 2] Download torrent & newsserver package(s) | CurlyMo | 190 | 693,307 |
23rd Jan, 2014 06:31 PM Last Post: Robbie Wiggins |