Find the answer to your Linux question:
Results 1 to 5 of 5
Hi there, here goes my first of many posts. I'm trying to setup beagle on Ubuntu 6.10 and I need to enable extended attributes on my ext3 partition. I found ...
  1. #1
    Just Joined!
    Join Date
    Nov 2006
    Posts
    6

    Enabling Extended Attributes for ext3 filesystem

    Hi there, here goes my first of many posts. I'm trying to setup beagle on Ubuntu 6.10 and I need to enable extended attributes on my ext3 partition. I found this page, but it's essentially gibberish to me. I located that file (/etc/fstab) but it's read only and oddly formatted. I realize I have to do something in the terminal (gasp!), so some more specific hand holding would be much appreciated. Thanks a lot.

  2. #2
    Linux Engineer Thrillhouse's Avatar
    Join Date
    Jun 2006
    Location
    Arlington, VA, USA
    Posts
    1,377
    Quote Originally Posted by theh3brewhammer
    I located that file (/etc/fstab) but it's read only and oddly formatted. I realize I have to do something in the terminal (gasp!)
    In order to edit /etc/fstab, you have to be root. In other words, to edit the file, try executing these commands:
    Code:
    $su -
    $gedit /etc/fstab
    That will make you become root, from which you can edit fstab and make the necessary changes. Post back here w/ any error messages/bad results you encounter.

  3. #3
    Just Joined!
    Join Date
    Nov 2006
    Posts
    6
    Ah so it doesn't allow me to edit that file without root privileges, thanks for the tip. I ended up not actually enabling the attributes because some google searches revealed that it's pretty easy to screw things up.

  4. #4
    Linux Engineer Javasnob's Avatar
    Join Date
    Jul 2005
    Location
    Wisconsin
    Posts
    942
    All you have to do is add user_xattr to the mount options in /etc/fstab. As long as you give the manpage a cursory look-over, you'll be fine. If you want to post your /etc/fstab file before restarting so we can check it, some of us would be happy to oblige. =D
    Flies of a particular kind, i.e. time-flies, are fond of an arrow.

    Registered Linux User #408794

  5. #5
    Just Joined!
    Join Date
    Nov 2006
    Posts
    6
    OK, here it is:

    Code:
    # /etc/fstab: static file system information.
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    proc            /proc           proc    defaults        0       0
    # /dev/hda2			
    UUID=f9ee26a3-8f72-4d8a-bee4-8c9726d07112 /               ext3    defaults, user_xattr,errors=remount-ro 0       1
    # /dev/hda5
    UUID=2a1d9bd3-6bc1-4390-a079-c45d4bc576a9 none            swap    sw              0       0
    /dev/hdc        /media/cdrom0   udf,iso9660 user,noauto     0       0
    /dev/hdd        /media/cdrom1   udf,iso9660 user,noauto     0       0
    /dev/           /media/floppy0  auto    rw,user,noauto  0       0

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...