Results 1 to 5 of 5

Thread: How to Determine Full Path to Second Drive

Hybrid View

  1. #1
    Join Date
    Nov 2006
    Beans
    18

    How to Determine Full Path to Second Drive

    I have a desktop with three drives in it. They display as "320Gb Hard Disk/21Gb Filesystem", "320Gb Hard Disk/297Gb Filesystem", and "File System". I am aware that I booting Ubuntu from the drive "File System" and that the other two are auxiliary storage.

    I want to setup a backup process using rsync to backup my home directory to the "297Gb Filesystem", but I don't know how to express the destination drive in "full directory path" terms, i.e., sda/sdb or whatever. What is a CLI command that I can use to make this determination? [I presume that rsync doesn't have a GUI and will be run from the command line].

    Thanks.

  2. #2
    Join Date
    Apr 2008
    Location
    LOCATION=/dev/random
    Beans
    5,767
    Distro
    Ubuntu Development Release

    Re: How to Determine Full Path to Second Drive

    If you are using your file manager to mount the drives when you click on them then they could be in a couple of places...

    If they are removable drives you'll probably find them in /media/<USERNAME>/
    If they are permanently connected they will be in /run/user/<USERNAME>/gvfs (for Ubuntu 12.10 and later) or in /home/<USERNAME>/.gvfs/ (for 12.04 and earlier).

    You can find out the full paths of all of your currently mounted drives by running the 'mount' command.

    I presume that rsync doesn't have a GUI and will be run from the command line
    There is a GUI that you can install called grsync, although I don't use it myself.
    Cheesemill

  3. #3
    Join Date
    Nov 2006
    Beans
    18

    Re: How to Determine Full Path to Second Drive

    Thank you, Cheesemill. The command mount is the quickest and obvious one. I'm running Ubuntu 10.04 and don't mount the drives manually, so I didn't think of that. I eventually found out what I need to know by the more complicated command sudo parted -l.

    One more question concerning rsync:
    I've never used rsync, and I don't even know what format the output will be in; mount identifies the destination drive as "/dev/sdb3 on /media/ad0f009f-xxxx-xxxx-xxxxxxxxxxxx type ext3 (rw,nosuid,nodev,uhelper=udisks)"
    My question is this: do I define the destination disk in the rsync command as "/dev/sdb3", or as "/media/ad0f009f-xxx-xxx-xxxxxxxxxxxx"?

    Thanks again.

  4. #4
    Join Date
    Jun 2007
    Location
    Arizona U.S.A.
    Beans
    5,739

    Re: How to Determine Full Path to Second Drive

    Quote Originally Posted by decatur-linux View Post
    My question is this: do I define the destination disk in the rsync command as "/dev/sdb3", or as "/media/ad0f009f-xxx-xxx-xxxxxxxxxxxx"?

    Thanks again.
    The path to the target is through the mount point, so would begin with /media/ad0f009f-xxx-xxx-xxxxxxxxxxxx. This gets you to the root of the filesystem on the backup drive. You can add any folder or path to this.

    Tip: You can label the partitions (filesystems) on a drive, and the label can be used in the path. this makes it easier to identify. Do some reading and learning about labels, and tools to create them. One such tool is e2label, a command line tool.

    For example, the target filesystem might be labeled 'backups' then the path can begin with:

    /media/backups/...
    Last edited by Dennis N; April 19th, 2013 at 03:10 PM.

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

    Re: How to Determine Full Path to Second Drive

    I like labels and label every partition. But I labeled my backup partition Backup but created a mount of backup and now get confused as my rsync mounts as backup, but Nautilus may see it as Backup. And I cannot have it mounted as both.

    I added this to my rsync script.

    # ! not
    if [ ! -d /mnt/backup ]; then
    mkdir /mnt/backup
    fi

    mount -t ext3 /dev/sda2 /mnt/backup
    Originally Posted by MountainX View Post #20 also other backup apps
    http://ubuntuforums.org/showthread.p...ghlight=backup
    Sample rsync file, use a text editor and paste into a file & name it mybackup.sh


    https://help.ubuntu.com/community/rsync
    https://help.ubuntu.com/community/CronHowto


    Some more examples:
    http://rsync.samba.org/examples.html

    Backup to external with check of mounted & email
    http://ubuntuforums.org/showthread.php?t=1701292
    rsync confirmation list:
    http://ubuntuforums.org/showthread.php?t=1692800
    Check for mount of backup partition
    http://ubuntuforums.org/showthread.php?t=1701292
    #http://ubuntuforums.org/showthread.php?t=1555647&page=4
    more scripts:
    http://ubuntuforums.org/showthread.php?t=1319155
    Last edited by oldfred; April 19th, 2013 at 06:38 PM.
    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.

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
  •