Results 1 to 5 of 5

Thread: Out of diskspace but shared folder has plenty

  1. #1
    Join Date
    Jan 2009
    Beans
    27

    Out of diskspace but shared folder has plenty

    Win 7 Host
    Ubuntu Guest

    So, I have been getting low disk warnings. I set the box up for 8gb and I download torrents. I set it up small so I could download to another drive that has alot of space. I mount a shared folder on the big drive and it goes to the shared folder. Im new to all this and Linux. the shared folder name is share because the commands someone showed me was to "mkdir mnt/share" and combine the sf_downloads to it. For some reason I am thinking im accually putting the new files on my box's 8gb because of this. Is there a way to put share sf_downloads cause I can't access it even when this is mounted, but I can see contents through the /mnt/share directory. Any help would be awesome. i'd really like to keep the 8gb for the OS and put ALL files on the shared folder on the other drive that win7 uses.

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

    Re: Out of diskspace but shared folder has plenty

    Ok. You have the /share directory in /mnt? Open /mnt and make sure.

    Now, if your other drive is, say, sdb3, then:

    Code:
    sudo mount /dev/sdb3 /mnt/share
    Now if you look in mount, the /share directory should have your other drive mounted on it. Think of it like this: There is nothing in /share until you mount something to it. I acts as a holder only; a mount point for something else to be mounted to.

    Of course, once you reboot sdb3 will no longer be mounted and you need to do it manually again unless you change the /etc/fstab file, which we can show you how to do if the manual mount works.

    PS: To find all your info, either use Gparted (partition editor) to have a look or you can use the terminal and:

    Code:
    sudo blkid
    Last edited by Bucky Ball; August 9th, 2012 at 02:41 AM.

  3. #3
    Join Date
    Jan 2009
    Beans
    27

    Re: Out of diskspace but shared folder has plenty

    Quote Originally Posted by Bucky Ball View Post
    Ok. You have the /share directory in /mnt? Open /mnt and make sure.

    Now, if your other drive is, say, sdb3, then:

    Code:
    sudo mount /dev/sdb3 /mnt/share
    Now if you look in mount, the /share directory should have your other drive mounted on it. Think of it like this: There is nothing in /share until you mount something to it. I acts as a holder only; a mount point for something else to be mounted to.

    Of course, once you reboot sdb3 will no longer be mounted and you need to do it manually again unless you change the /etc/fstab file, which we can show you how to do if the manual mount works.

    PS: To find all your info, either use Gparted (partition editor) to have a look or you can use the terminal and:

    Code:
    sudo blkid
    /dev/sda1: UUID="b354a321-2b92-4372-9dde-bb1223dee278" TYPE="ext4"
    /dev/sda5: UUID="1b99d159-b93c-4645-bc1b-4bec4ae57933" TYPE="swap"
    Grabbed Gparted. I see more options. sda2 says is an extended file system 1 TB I am trying this but when I hit the command to mount it. The cursor stops and when I try to close the terminal it says there is a process still loading..
    Last edited by TRiCiDE; August 9th, 2012 at 04:13 AM.

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

    Re: Out of diskspace but shared folder has plenty

    Got ya. I think. If it is just an extended partition then there is nothing there. That is like a holder for, theoretically, as many logical partitions/drives as your hardware can handle. Reason for extendeds? Physical hard drive can only have four primary partitions (in the common scenario).

    So, I think you need to create some logical partitions in the extended partition. You have a Tb there so have a think before leaping.

    Open Gparted and you should see that extended partition. Right click on it and create a logical partition/drive in there or whatever your plan dictates. Make sure you assign a mount point for the partition (name). This can be anything you like. (/music /torrents /vids)

    Once you've done all this, reboot and the new logical partitions should be mounted and available.

  5. #5
    Join Date
    Jan 2009
    Beans
    27

    Re: Out of diskspace but shared folder has plenty

    Quote Originally Posted by Bucky Ball View Post
    Got ya. I think. If it is just an extended partition then there is nothing there. That is like a holder for, theoretically, as many logical partitions/drives as your hardware can handle. Reason for extendeds? Physical hard drive can only have four primary partitions (in the common scenario).

    So, I think you need to create some logical partitions in the extended partition. You have a Tb there so have a think before leaping.

    Open Gparted and you should see that extended partition. Right click on it and create a logical partition/drive in there or whatever your plan dictates. Make sure you assign a mount point for the partition (name). This can be anything you like. (/music /torrents /vids)

    Once you've done all this, reboot and the new logical partitions should be mounted and available.
    I decided to create a new virtualbox with plenty of room. Thanks for the help!

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
  •