Asus RT-N13U B1 - DD-wrt thread

Optware, the Right Way - DD-WRT Wiki
as per the above guide, i tried to access service, through command- "service" but it showed this error-"sh: service: not found"

and this is the "services-usb" tab of ddwrt interface.
Capture.JPG
 
I just set up my router with transmission, I've some questions
1.is there any way to configure transmission to download one torrent at a time, while others queued?
2.how can i put password on transmission access page(http://192.168.1.1:9091)
i did some googling for the password thing, and i found this
http://wiki.openwrt.org/doc/uci/transmission
are there the setting to set up password--
rpc_username
rpc_password
3.is shuting down router safe while transmission is running(downloading)?

1 - Download this - code.google.com/p/transmisson-remote-gui
You can queue it.
 
service is a custom script it wont run unless you install it , google for it.

You need to stop transmission first before you make any change to settings.json , also your startup might be overriding it.
 
bro tried everything killed transmission before editing settings.json
what to do somewhere i read
When Transmission starts, it uses the transmission.start script, where there are some settings set. No matter if you change the download-dir or incomplete dir in the settings.json, the startup script will overwrite it.



 
little help please. I have the exact same problem as mentioned here [i tired all the methods in the dd-wrt wiki :( ]

here is the output of lsmod



root@DD-WRT:/# lsmod
Module Size Used by
nf_nat_pptp 4096 0
nf_conntrack_pptp 4096 1 nf_nat_pptp
nf_nat_proto_gre 4096 1 nf_nat_pptp
nf_conntrack_proto_gre 4096 1 nf_conntrack_pptp
etherip 8192 0
rt2860v2_ap 479232 1
scsi_wait_scan 480 0
root@DD-WRT:/#
dmesg

<6>usb 1-1: new high speed USB device using dwc_otg and address 3
<6>usb 1-1: configuration #1 chosen from 1 choice
<6>scsi1 : SCSI emulation for USB Mass Storage devices
<7>usb-storage: device found at 3
<7>usb-storage: waiting for device to settle before scanning
<5>scsi 1:0:0:0: Direct-Access hp v165w 1100 PQ: 0 ANSI: 4
<5>sd 1:0:0:0: [sda] 15950592 512-byte hardware sectors (8167 MB)
<5>sd 1:0:0:0: [sda] Write Protect is off
<7>sd 1:0:0:0: [sda] Mode Sense: 43 00 00 00
<3>sd 1:0:0:0: [sda] Assuming drive cache: write through
<5>sd 1:0:0:0: [sda] 15950592 512-byte hardware sectors (8167 MB)
<5>sd 1:0:0:0: [sda] Write Protect is off
<7>sd 1:0:0:0: [sda] Mode Sense: 43 00 00 00
<3>sd 1:0:0:0: [sda] Assuming drive cache: write through
<6> /dev/scsi/host1/bus0/target0/lun0: p1 p2 p3
<5>sd 1:0:0:0: [sda] Attached SCSI removable disk
<5>sd 1:0:0:0: Attached scsi generic sg0 type 0
<7>usb-storage: device scan complete

as shown the web GUI -> services -> USB tab

--- /dev/discs/disc0/disc
Block device, size 7.606 GiB (8166703104 bytes)
DOS/MBR partition map
Partition 1: 512 MiB (536870912 bytes, 1048576 sectors from 2048)
Type 0x83 (Linux)
Ext2 file system
Volume name "optware"
UUID 0C83431C-18D1-49F8-AD78-94F869FB7A25 (DCE, v4)
Volume size 512 MiB (536870912 bytes, 131072 blocks of 4 KiB)
Partition 2: 64 MiB (67108864 bytes, 131072 sectors from 1050624)
Type 0x82 (Linux swap / Solaris)
Linux swap, version 2, subversion 1, 4 KiB pages, little-endian
Swap size 63.99 MiB (67100672 bytes, 16382 pages of 4 KiB)
Partition 3: 7.042 GiB (7561674752 bytes, 14768896 sectors from 1181696)
Type 0x83 (Linux)
Ext2 file system
Volume name "data"
UUID B3CFDEFF-122D-4BC3-863F-E29235C640C0 (DCE, v4)
Volume size 7.042 GiB (7561674752 bytes, 1846112 blocks of 4 KiB)
Status: Not mounted
 
Just remove the line from startup script for settings.json thats why i said to look at startup script.

Did you tried mounting the drive manually ?
 
3. You shutdown all services transmission , samba , unmount and then shutdown refer few pages back on how to shutdown properly

is this necessary if I'm using a flash drive?(currently using corsair voyager 8gb for downloading)?:unsure:

- - - Updated - - -

ps:
what is the fastest method of copying files from the flash drive?
I'm currently using filezilla(ftp), copy speed is ~8mb.
 
You can't go any faster than that or just plug the USB to pc and google ext2fs

What's the modified time of settings.json ? and whats your startup script
 
i didn't modify anything,
i followed you guide to the book, didn't add/modify anything.

start up script-
Code:
mkdir /tmp/etc/config
echo "wget http://home.karneval.cz/10102207/fs.gz -P /tmp/root" >> /tmp/etc/config/fs.wanup
echo "tar -xvzf /tmp/root/fs.gz -C /tmp/root" >> /tmp/etc/config/fs.wanup
echo "sh /tmp/root/ext3" >> /tmp/etc/config/fs.wanup
echo "mount -o rw -t ext3 /dev/discs/disc0/part1 /opt" >> /tmp/etc/config/fs.wanup
echo "mount -o rw -t ext3 /dev/discs/disc0/part2 /mnt" >> /tmp/etc/config/fs.wanup
echo "rm /tmp/root/*.ko /tmp/root/fs.gz /tmp/root/ext3" >> /tmp/etc/config/fs.wanup
chmod +x /tmp/etc/config/fs.wanup
echo "nobody:*:65000:65000:nobody:/mnt:/bin/false" >> /etc/passwd
sleep 60
echo 1 > /sys/class/scsi_disk/0:0:0:0/allow_restart
wget http://www.3iii.dk/linux/optware/settings.json -O /mnt/data/torrents/.config/transmission-daemon/settings.json
/opt/bin/transmission-daemon -g /mnt/data/torrents/.config/transmission-daemon
 
is this necessary if I'm using a flash drive?(currently using corsair voyager 8gb for downloading)?:unsure:

- - - Updated - - -

ps:
what is the fastest method of copying files from the flash drive?
I'm currently using filezilla(ftp), copy speed is ~8mb.


I am using 4 Gb corsair voyager. Somehow ext2fs is not working for me on Win 7. I can copy but I cant delete any file.

I keep USB connected in N13, have enabled FTP so copy everything from FTP.
 
how fast the flash drive will go bad?, i'm using it for 2 days now, flash drive is always connected but i use it only in the night, to download.
 
2/4 GB USB are quite cheap. Even if they dont work after 1 year, take new one.

My motto is to keep HDD away from huge read/write & just use them to watch movies. Once 4/8 GB USB is full just move the movies to HDD.

If HDD is connected to N13 & it goes off due to heavy use then all your stuff also goes off :)
 
Hi!

Is there anyway for transmission to automatically shift completed downloads into appropriate folders? I am using Flexget to feed transmission, and there is an option there. wondering if anyone else has played around with it?
 
Back
Top