<br><br><div><span class="gmail_quote">On 3/11/08, <b class="gmail_sendername">Bob Cortez</b> <<a href="mailto:rjcortez@gmail.com">rjcortez@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; margin-left: 0.80ex; border-left-color: #cccccc; border-left-width: 1px; border-left-style: solid; padding-left: 1ex">
<div><span class="e" id="q_1189b5d57a79e9dd_0">On Mon, Mar 10, 2008 at 4:34 PM, Owen Townend <<a href="mailto:owen.townend@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">owen.townend@gmail.com</a>> wrote:<br>
</span></div><div class="gmail_quote"><div><span class="e" id="q_1189b5d57a79e9dd_2"><blockquote class="gmail_quote" style="border-left-color: #cccccc; border-left-width: 1px; border-left-style: solid; margin-top: 0pt; margin-right: 0pt; margin-bottom: 0pt; margin-left: 0.80ex; padding-left: 1ex">
<br><br><div><div><div><span class="gmail_quote">On 3/11/08, <b class="gmail_sendername">Bob Cortez</b> <<a href="mailto:rjcortez@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">rjcortez@gmail.com</a>> wrote:</span></div>
</div><blockquote class="gmail_quote" style="border-left-color: #cccccc; border-left-width: 1px; border-left-style: solid; margin-top: 0pt; margin-right: 0pt; margin-bottom: 0pt; margin-left: 0.80ex; padding-left: 1ex"><div>
<div><br><br><div class="gmail_quote"><span>On Mon, Mar 10, 2008 at 3:57 PM, Rich Rudnick <<a href="mailto:rich@aphroneo.net" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">rich@aphroneo.net</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left-color: #cccccc; border-left-width: 1px; border-left-style: solid; margin-top: 0pt; margin-right: 0pt; margin-bottom: 0pt; margin-left: 0.80ex; padding-left: 1ex"><div>Bob Cortez wrote:<br>
  > I have a dual boot (XP and Gutsy)  I want to be able to read write in<br> > both OS to two FAT 32 partitions.  They will also be shared drives on<br> > our network.<br> ><br> > Results from fdisk -l<br>
  ><br>  > /dev/sda4            2676        9729    56661255    b  W95 FAT32<br> > /dev/sdb1               1        9729    78148161    b  W95 FAT32<br> ><br> > Lines in /etc/fstab<br> ><br> > # /dev/sda4<br>
 > UUID=F8F2-2027  /disk1          vfat    defaults,utf8,umask=007,gid=46<br>   > 0       1<br> > # /dev/sdb1<br> > UUID=FC2C-3A48  /disk2          vfat    defaults,utf8,umask=007,gid=46<br> > 0       1<br>
 ><br><br></div>I'm assuming you can read these as root, but not as your user. You<br>   should be sure you are in group plugdev , that's what gid=46 is pointing at.<br></blockquote></span><div><br>How do I change it so they mount on boot up and are available to all users on the network?<br>
<br>Thanks,<br><br>Bob<br></div></div><br></div></div>--<div><br> ubuntu-users mailing list<br><a href="mailto:ubuntu-users@lists.ubuntu.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">ubuntu-users@lists.ubuntu.com</a><br>
 Modify settings or unsubscribe at: <a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-users" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">https://lists.ubuntu.com/mailman/listinfo/ubuntu-users</a><br>
<br></div></blockquote></div><br>Hey,<br>  Are you able to access the disks as a normal user logged into the system with this setup?<br>  How would you like to be able to access the disks over the network? <br>  If you have windows machines you'll want to install/configure samba, otherwise NFS.<br>
    Depending on what you're using them for though you may only need ftp/sftp/sshfs.<br><br>  In short: what can you do now, what are your requirements, and what have you done so far?<br><br>cheers,<br><font color="#888888">Owen.</font></blockquote>
</span></div><div><br>Write now  Disk1 and Disk2 only show up as folders  in file system.  I can open the folders fine, as a user.  They are empty right now.  They don't appear on the desktop or under Computer in the 'Places' menu.<br>
<br>I'll probably use Samba to make the drives available on the network.  The drives will just be data storage that will need to be accessible rw for all users on the network (766?)<br><br>I'm thinking about deleting these two partitions and reconfiguring them to NTFS <br>
</div></div><br>--<br> ubuntu-users mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:ubuntu-users@lists.ubuntu.com">ubuntu-users@lists.ubuntu.com</a><br> Modify settings or unsubscribe at: <a onclick="return top.js.OpenExtLink(window,event,this)" href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-users" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-users</a><br>
<br></blockquote></div><br>Hey,<br>  Not showing up in the 'places' menu or on the desktop is normal for disks configured in fstab.<br>  Those places are for auto detected, usually temporary, drives like usb sticks. Use `mount` and/or `df -h` to check that the disks are actually connected and mounted correctly.<br>
<br>  The only good reason for choosing fat32/ntfs in this project would be if the disks were going to be physically connected to a windows machine[1]. Otherwise, If the disks are going to be staying in this server and shared only over the network you are best formatting them with a linux fs such as ext3.<br>
  A sample samba share for your needs could be something like this from my smb.conf which allows all users rw access:<br> <br>[dumping]<br>          comment = Kushiels Dumping Ground<br>          writable = yes<br>          locking = yes<br>
          path = /phedre/share/dump<br>          create mask = 0766<br>          browseable = yes<br>          case sensitive = yes<br>          guest ok = yes<br>  guest only = yes<br>        <br>cheers,<br>Owen.<br><br>
footnotes:<br>[1] Though, there are windows drivers available for ext2/3 such as <a href="http://www.fs-driver.org">http://www.fs-driver.org</a><br><br>