Connect multiple USB devices to the LinkStation via a USB hub
From NAS-Central Buffalo - The Linkstation Wiki
(Difference between revisions)
m |
|||
| (3 intermediate revisions not shown) | |||
| Line 1: | Line 1: | ||
| + | {{Template:Articles}} | ||
''<font color=red><small> | ''<font color=red><small> | ||
This article is based on forum posts by lotus49 and Bauldrick work by mindbender and Sylver. | This article is based on forum posts by lotus49 and Bauldrick work by mindbender and Sylver. | ||
| Line 5: | Line 6: | ||
</small></font>''<br> | </small></font>''<br> | ||
| - | {{ | + | {{Postit|USB Hard Drive | The LinkStation's USB port may not provide enough current for some USB-powered hard drives.}} |
You can connect multiple USB device to the LinkStation via a USB hub. However, you must modify 2 files in order to share more than 1 USB disk. The following information details connecting 2 USB disks but can easily be modified to cover any number of disks. | You can connect multiple USB device to the LinkStation via a USB hub. However, you must modify 2 files in order to share more than 1 USB disk. The following information details connecting 2 USB disks but can easily be modified to cover any number of disks. | ||
| Line 28: | Line 29: | ||
### parse usb device info | ### parse usb device info | ||
| - | /usr/bin/parse_usbscsi > /dev/null 2> | + | /usr/bin/parse_usbscsi > /dev/null 2> |
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
Latest revision as of 17:18, 13 April 2007
This article is based on forum posts by lotus49 and Bauldrick work by mindbender and Sylver.
Originally by frontalot.
at Linkstationwiki.org
| USB Hard Drive |
| The LinkStation's USB port may not provide enough current for some USB-powered hard drives. |
You can connect multiple USB device to the LinkStation via a USB hub. However, you must modify 2 files in order to share more than 1 USB disk. The following information details connecting 2 USB disks but can easily be modified to cover any number of disks.
1.) Open the file in a text editor and adjust it to the following:
vi /etc/murasaki/bin/mount_sd.sh
#!/bin/sh BOOTCHECK=0 MNT_DIR1=/mnt2/usbdisk1 MNT_DIR2=/mnt2/usbdisk2 LOCK1=/var/lock/mount_sd1 LOCK2=/var/lock/mount_sd2 MOUNT_SD1=0 MOUNT_SD2=0 ### check initial devices if [ $# -eq 2] ; then BOOTCHECK=1 fi ### parse usb device info /usr/bin/parse_usbscsi > /dev/null 2>

