Will dd-wrt support RT-N13U?

Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Ralink SoC based Hardware
Goto page Previous  1, 2, 3 ... 12, 13, 14 ... 57, 58, 59  Next
Author Message
gouryella
DD-WRT User


Joined: 06 Mar 2010
Posts: 107
Location: Plzeň, CZE

PostPosted: Wed Jun 23, 2010 18:05    Post subject: Re: thanks gouryella for bring the usb alive, Reply with quote
bug

Last edited by gouryella on Wed Jun 23, 2010 18:23; edited 8 times in total
Sponsor
ekampreet
DD-WRT Novice


Joined: 23 Mar 2010
Posts: 16

PostPosted: Wed Jun 23, 2010 18:06    Post subject: Re: thanks gouryella for bring the usb alive, Reply with quote
[quote="gouryella"]
ekampreet wrote:
enduser wrote:

as When I followed the method one time the USB got detected, but not mounting automatically next time
dont knw wht to do , again goin back to ASUS Firmware. Will wait for next release

Because using fat32 disk, my script is for EXT3 only..

hmmmmmmmmm seems prob of being newbie .

can you suggest some solution.
ekampreet
DD-WRT Novice


Joined: 23 Mar 2010
Posts: 16

PostPosted: Wed Jun 23, 2010 18:18    Post subject: Re: thanks gouryella for bring the usb alive, Reply with quote
gouryella wrote:
1) For vfat & ext3 paste to Administrations->Commands and Save Startup:
Code:
mkdir /tmp/etc/config/
echo "wget http://www.home.karneval.cz/10102207/jbd.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/mbcache.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/ext3.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/fat.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/vfat.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/jbd.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/mbcache.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/ext3.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/fat.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/vfat.ko" >> /tmp/etc/config/ext3.wanup
echo "mount /dev/scsi/host0/bus0/target0/lun0/part1 /opt" >> /tmp/etc/config/ext3.wanup
chmod +x /tmp/etc/config/ext3.wanup

My script needs fast internet connection, u can add some sleep before insmoding...



tried, bt results are same :-
--- /dev/discs/disc0/disc
Block device, size 964.0 MiB (1010826752 bytes)
DOS/MBR partition map
Partition 1: 964.0 MiB (1010794496 bytes, 1974208 sectors from 63, bootable)
Type 0x0B (Win95 FAT32)
FAT32 file system (hints score 4 of 5)
Volume size 960.0 MiB (1006600192 bytes, 245752 clusters of 4 KiB)
Status: Not mounted
gouryella
DD-WRT User


Joined: 06 Mar 2010
Posts: 107
Location: Plzeň, CZE

PostPosted: Wed Jun 23, 2010 18:33    Post subject: Reply with quote
My fault i forgot codepages in Idea, again ext3 & fat32, fat automount
Just paste to Administrations->Commands and Save Startup:
Code:
mkdir /tmp/etc/config/
echo "wget http://www.home.karneval.cz/10102207/jbd.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/mbcache.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/ext3.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/fat.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/vfat.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/nls_iso8859-1.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/nls_cp437.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/jbd.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/mbcache.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/ext3.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/fat.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/vfat.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/nls_iso8859-1.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/nls_cp437.ko" >> /tmp/etc/config/ext3.wanup
echo "mount /dev/scsi/host0/bus0/target0/lun0/part1 /opt" >> /tmp/etc/config/ext3.wanup
chmod +x /tmp/etc/config/ext3.wanup


If not work after reboot pls post output of:
Code:
dmesg
lsmod
ls /tmp/root
cat /tmp/etc/config/ext3.wanup
ls /tmp/etc/config/

It's not good idea using optware with fat32, i have modified cifs.ko but i do not want write howto build in samba with any disk Rolling Eyes
look back to hex mod what i post before
http://www.dd-wrt.com/dd-wrtv2/down.php?path=downloads%2Fothers%2Feko%2FPublic%2Fmodules%2F2.6.24.111/


Last edited by gouryella on Wed Jun 23, 2010 18:56; edited 3 times in total
ekampreet
DD-WRT Novice


Joined: 23 Mar 2010
Posts: 16

PostPosted: Wed Jun 23, 2010 18:53    Post subject: Reply with quote
gouryella wrote:
My fault i forgot codepages in Idea, again ext3 & fat32, fat automount
Just paste to Administrations->Commands and Save Startup:
Code:
mkdir /tmp/etc/config/
echo "wget http://www.home.karneval.cz/10102207/jbd.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/mbcache.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/ext3.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/fat.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/vfat.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/nls_iso8859-1.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "wget http://www.home.karneval.cz/10102207/nls_cp437.ko -P /tmp/root/" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/jbd.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/mbcache.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/ext3.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/fat.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/vfat.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/nls_iso8859-1.ko" >> /tmp/etc/config/ext3.wanup
echo "insmod /tmp/root/nls_cp437.ko" >> /tmp/etc/config/ext3.wanup
echo "mount /dev/scsi/host0/bus0/target0/lun0/part1 /opt" >> /tmp/etc/config/ext3.wanup
chmod +x /tmp/etc/config/ext3.wanup


If not work after reboot pls post output of:
Code:
dmesg
lsmod
ls /tmp/root
cat /tmp/etc/config/ext3.wanup
ls /tmp/etc/config/

It's not good idea using optware with fat32, i have modified cifs.ko but i do not want write howto build in samba with any disk Rolling Eyes
look back to hex mod what i post before
http://www.dd-wrt.com/dd-wrtv2/down.php?path=downloads%2Fothers%2Feko%2FPublic%2Fmodules%2F2.6.24.111/


will try tmrw, as busy in some project.

But TONS OF THANKS for taking pains to make this thing work.
gouryella
DD-WRT User


Joined: 06 Mar 2010
Posts: 107
Location: Plzeň, CZE

PostPosted: Thu Jun 24, 2010 13:41    Post subject: Reply with quote
My 50x edited ext3/optware guide seems to be completed
debaj
DD-WRT Novice


Joined: 21 Jun 2010
Posts: 7

PostPosted: Thu Jun 24, 2010 14:40    Post subject: Reply with quote
gouryella wrote:
My 50x edited ext3/optware guide seems to be completed
Thank you very much, I think I messed up the entire router, so in the weekend I will try it out from scratch. :-)

Has anybody met this problem: seemingly everything just worked fine yesterday evening, and suddenly the WAN connection failed. I got about 2-3 KB/s up- and downlink, and almost all website (say 95%) returned with error code 400 (Bad request), and even the successful requests were extremely slow. I tried to reset the router, restart the cable modem, but the problem is not solved since then. If there is any trivial solutions, I would better not start the entire process all over again. Smile
kalpik
DD-WRT User


Joined: 11 Dec 2008
Posts: 232

PostPosted: Thu Jun 24, 2010 14:44    Post subject: Reply with quote
gouryella wrote:
My 50x edited ext3/optware guide seems to be completed

Great work! Care to add it to the wiki?
kofin
DD-WRT Novice


Joined: 12 Jun 2010
Posts: 3

PostPosted: Thu Jun 24, 2010 15:25    Post subject: Reply with quote
gouryella wrote:
My 50x edited ext3/optware guide seems to be completed

zlaty cesky rucicky Razz

_________________
My English is bad.
gouryella
DD-WRT User


Joined: 06 Mar 2010
Posts: 107
Location: Plzeň, CZE

PostPosted: Thu Jun 24, 2010 22:27    Post subject: Reply with quote
Code:
root@dd-wrt:~# ipkg install hdparm
Installing hdparm (9.28-1) to /opt/...
Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/hdparm_9.28-1_mipsel.ipk
Configuring hdparm
/opt/bin/update-alternatives: line 185: sort: not found
update-alternatives: removing //opt/sbin/hdparm as no more alternatives exist for it
Successfully terminated.
root@dd-wrt:~# hdparm
-sh: hdparm: not found
root@dd-wrt:~#

I have troubles installing some software, i thing that busybox is very shrinked (sort).
LOM
DD-WRT Guru


Joined: 28 Dec 2008
Posts: 7647

PostPosted: Fri Jun 25, 2010 3:55    Post subject: Reply with quote
gouryella wrote:

I have troubles installing some software, i thing that busybox is very shrinked (sort).


Yes it is shrinked down version of Busybox and the sort command is not in it.
Shrinked down (rarely used commands removed) in order to get the firmware to fit in small flashes.

_________________
Kernel panic: Aiee, killing interrupt handler!
gouryella
DD-WRT User


Joined: 06 Mar 2010
Posts: 107
Location: Plzeň, CZE

PostPosted: Fri Jun 25, 2010 6:40    Post subject: Reply with quote
Ok fixing Optware guide by:
Code:
wget http://www.home.karneval.cz/10102207/sort -P /opt/bin
chmod +x /opt/bin/sort

And hdparm results:
Code:
root@dd-wrt:/# hdparm -tT /dev/scsi/host0/bus0/target0/lun0/part1
/dev/scsi/host0/bus0/target0/lun0/part1:
 Timing cached reads:   166 MB in  2.00 seconds =  82.83 MB/sec
 Timing buffered disk reads:   70 MB in  3.04 seconds =  23.03 MB/sec


Last edited by gouryella on Fri Jun 25, 2010 7:36; edited 2 times in total
tzjwxpre
DD-WRT Novice


Joined: 03 Mar 2010
Posts: 7

PostPosted: Fri Jun 25, 2010 7:02    Post subject: Reply with quote
tzjwxpre wrote:
ekampreet wrote:
strangely when I installed DD-WRT again , it worked like charm.
thanks guys


strange to me too!! The first time I flashed to dd-wrt is working great~ but when I flash back to asus then flashed dd-wrt again, I could not have internet!!

Thus, the only thing I could do is flash back to asus and got internet! Does anyone have solution for this? I need the dd-wrt back to me..... Crying or Very sad


I've found the problem and here is my testing:
I pluged the DSL line to one of the LAN port (as a WAN) and I could have internet now! Don't know why~ But at least I could use the LAN as WAN finally. Still hope someone could fix it though~
gouryella
DD-WRT User


Joined: 06 Mar 2010
Posts: 107
Location: Plzeň, CZE

PostPosted: Fri Jun 25, 2010 7:42    Post subject: Reply with quote
My motorola surfboard SB5100 assigned MAC of my router, if it's changed = no internet. I must reset modem to learn new MAC, maybe could help, also exist some function named MAC cloning in the interface.
nihilo666
DD-WRT User


Joined: 07 May 2010
Posts: 384
Location: Surgut, Western Siberia

PostPosted: Fri Jun 25, 2010 16:00    Post subject: Reply with quote
gouryella wrote:
wget http://www.home.karneval.cz/10102207/optware-install.sh -O - | tr -d '\r' > /tmp/optware-install.sh
Does not work for me, as it says local nameserver (192.168.2.1) is different than default gateway (192.168.1.1). I use RT-N13U as repeater and it has to be in different subnet.
Goto page Previous  1, 2, 3 ... 12, 13, 14 ... 57, 58, 59  Next Display posts from previous:    Page 13 of 59
Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Ralink SoC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum