Results 1 to 7 of 7

Thread: Partition with mounting inconsistencies

  1. #1
    Join Date
    Feb 2010
    Location
    Uruguay
    Beans
    339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Exclamation Partition with mounting inconsistencies

    Hello,

    I have installed Ubuntu 12.04 when it came out, but this time I haven't had much time to look into it. THe problem I'm having I think it's related to mounting a partition even though is not exactly that.

    When I go to a folder, I can see the partition on the left side under devices. I can click on it and it works fine. But if I use a pic from that partition as wallpaper, or my music library (clementine) or pictures library (digiKam), they fail to find it on the next boot.

    Any help will be much appretiated.
    Thank you

  2. #2
    Join Date
    Nov 2008
    Beans
    Hidden!

    Re: Partition with mounting inconsistencies

    When you shutdown, you break the link to that partition.

    Look into symlinks

    http://www.google.com/search?q=how+t...ient=firefox-a

  3. #3
    Join Date
    Feb 2010
    Location
    Uruguay
    Beans
    339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Partition with mounting inconsistencies

    Thank you I will read about it. This never happened to me on any previous ubuntu releases though.

    I wil post my results.

  4. #4
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Partition with mounting inconsistencies

    If a partition on your drive, you need to add a permanent mount to fstab so it is mounted. If an external drive you may just need to copy those files over to a permanently mounted location.

    Understanding fstab
    https://help.ubuntu.com/community/Fstab
    https://help.ubuntu.com/community/Mount/
    https://help.ubuntu.com/community/FilePermissions
    http://www.psychocats.net/ubuntu/mountlinux

    Specifics:
    http://ubuntuforums.org/showthread.php?t=1983336
    suggest using templates instead. Post #6
    For ntfs UUID shown is example only see below:
    UUID=DA9056C19056A3B3 /media/WinD ntfs defaults,nls=utf8,umask=000,uid=1000,windows_names 0 0
    Window_names prevents the use of invalid windows characters:
    (which are the nine characters ” * / : < > ? \ | and those whose code is less than 0×20)
    uid=1000 should fix the trash problems as well:

    For ext4:
    UUID=076426af-cbc5-4966-8cd4-af0f5c879646 /media/Data ext4 defaults,noatime 0 2
    ** To find the correct UUID for your partitions:
    sudo blkid -c /dev/null -o list
    ** You will have to create the mount point yourself, for example:
    sudo mkdir /media/WinD
    and/or
    sudo mkdir /media/Data
    ** Then add the template with the correct UUID and mount point to fstab:
    sudo cp /etc/fstab /etc/fstab.backup
    gksu gedit /etc/fstab
    ** And when you are done editing fstab and saving it run the following command to test for errors and mount the partitions without requiring a reboot. You will know before you reboot if something is amiss. :
    sudo mount -a
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  5. #5
    Join Date
    Feb 2008
    Location
    Land of fire and drought
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: Partition with mounting inconsistencies

    Quote Originally Posted by oldfred View Post
    If a partition on your drive, you need to add a permanent mount to fstab so it is mounted. If an external drive you may just need to copy those files over to a permanently mounted location.
    +1. What fred said. The drive with the pic is not being mounted at boot.

  6. #6
    Join Date
    Feb 2010
    Location
    Uruguay
    Beans
    339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Partition with mounting inconsistencies

    Thank you both very much. I will start right now to solve it with the info you posted.

    I didn't mention it is a storage NTFS partition. I use it to keep my music and pictures etc.

  7. #7
    Join Date
    Nov 2008
    Beans
    Hidden!

    Re: Partition with mounting inconsistencies

    Quote Originally Posted by Bucky Ball View Post
    +1. What fred said. The drive with the pic is not being mounted at boot.
    Yes +1; I forgot about that

Tags for this Thread

Bookmarks

Posting Permissions

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