Changes

How to forge a local file system server with IGEPv2 Board

587 bytes added, 11:25, 3 November 2011
no edit summary
= Set up a External HD =
External HD is useful to get more space for our project. In this part we are going to set up automatically during startupour HD when it is connected to server.
Make Format your HD with a folder to mount External HD, create EXT3 Filesystem. Create the following script: /etc/udev/rules.d/50-mount-external.rules:
<pre>KERNEL!= "sd[a-z][0-9]", GOTO="media_by_label_auto_mount_end"
<pre>/etc/init.d/udev stop
/etc/init.d/udev start
</pre>
Connect your HD to server.
Use "mount" command to see External HD information.
<pre>
/dev/root on / type ext3 (rw)
none on /proc type proc (rw,noexec,nosuid,nodev)
none on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/kernel/debug type debugfs (rw)
none on /dev type tmpfs (rw,mode=0755)
none on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
none on /dev/shm type tmpfs (rw,nosuid,nodev)
none on /var/run type tmpfs (rw,nosuid,mode=0755)
none on /var/lock type tmpfs (rw,noexec,nosuid,nodev)
/dev/sda1 on /media/usbhd-sda1 type ext3 (rw,relatime)
 
 
</pre>
4,199
edits