Hi, my router works perfectly. I'm now struggeling with the second USB hardisk. I created a parition on it with fdisk. Then I created ext3 file system on it.
Code:
mke2fs -j -m 0 /dev/discs/disc1/part1
The hardisk is accessible fine at tmp/mnt/disc1_1/. I would like to have the link to the hardisk as /tmp/harddisk2 so I edited /etc/fstab in following way:
Code:
#device                 Mountpoint      FStype  Options         Dump    Pass#
/dev/discs/disc0/part1  none            swap    sw              0       0
/dev/discs/disc0/part2  /opt            ext3    rw,noatime      1       1
/dev/discs/disc0/part3  /tmp/harddisk   ext3    rw,noatime      1       1
/dev/discs/disc1/part1  /tmp/harddisk2   ext3    rw,noatime      1       1
But the harddisk2 symlink is not created after reboot. If I try "mount -a" the system says that the directory "/tmp/harddisk2" does not exists. How the symlink harddisk2 would be created? What is also strange to me, that when IU delete the "/tmp/harddisk" line from fstab, the symlink for /tmp/harddisk is created anyway.