mount

Forums for the LXDE Edition
Forum rules
Before you post please read this

mount

Postby n00by on Wed Aug 31, 2011 1:33 pm

hi there!

i have two hdd on my comp.

one is system [80gb] and is divided into 3 partitions:

1 /dev/sda1 - swap 2gb
2 filesystem /dev/sda2 42gb mounted at /
3 filesystem /dev/sda3 36gb mounted at /home


--------

the second hdd is backup

[300gb] and is divided into two partitions:
1 filesystem /dev/sdb1 150gb mounted at /media/1hdd
2 filesystem /dev/sdb2 150gb mounted at /media/2hdd

all of this information i collected from the program: disc utility from the menu tab system tools


so....


look at those pictures and can someone tell me what to do about this? do you see problems?


Image

Image

Image

Image

Image

Image

in the last pic. /media/sdb2 is empty
n00by
Level 1
Level 1
 
Posts: 8
Joined: Wed Aug 31, 2011 12:42 pm

Linux Mint is funded by ads and donations.
 

Re: mount

Postby altair4 on Wed Aug 31, 2011 2:14 pm

I don't use "disk utility", mountmanager, pysdm, ntfs-config, or any of the other so called utilities. If this is a question about how this utility is mounting your partitions I can't help you.

However if you would like to automount these partitions at boot please post the output of the following commands:
Code: Select all
sudo blkid -c /dev/dell

Code: Select all
cat /etc/fstab

Code: Select all
mount
Please add a [SOLVED] at the end of your original subject header if your question has been answered and solved.
altair4
Level 13
Level 13
 
Posts: 4661
Joined: Tue Feb 03, 2009 10:27 am

Re: mount

Postby n00by on Wed Aug 31, 2011 3:52 pm

yes, i want to solve this problem [any solution - gui/terminal]


like you said:


Code: Select all
nikola@nkl ~ $ sudo blkid -c /dev/dell
/dev/sda1: UUID="56d28507-9677-4041-880d-0d4d4ce7fd17" TYPE="swap"
/dev/sda2: UUID="c78b8e49-1b45-4eb0-a8b8-0cba5235d892" TYPE="ext4"
/dev/sda3: UUID="43f49f82-0fd3-46aa-8878-178af3acf671" TYPE="ext4"
/dev/sdb1: LABEL="bekap1" UUID="5071e4d9-16f5-4c50-ad1e-65694d6c2db0" TYPE="ext4"
/dev/sdb2: LABEL="bekap2" UUID="71a13818-cb61-46d8-b419-101cf06f9b78" TYPE="ext4"


Code: Select all
nikola@nkl ~ $ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc                                       /proc        proc  nodev,noexec,nosuid  0  0 
# / was on /dev/sda2 during installation
UUID=c78b8e49-1b45-4eb0-a8b8-0cba5235d892  /            ext4  errors=remount-ro    0  1 
# /home was on /dev/sda3 during installation
UUID=43f49f82-0fd3-46aa-8878-178af3acf671  /home        ext4  defaults             0  2 
# swap was on /dev/sda1 during installation
UUID=56d28507-9677-4041-880d-0d4d4ce7fd17  none         swap  sw                   0  0 
/dev/sdb1                                  /media/1hdd  ext4  defaults             0  0 
/dev/sdb2                                  /media/2hdd  ext4  defaults             0  0 


Code: Select all
nikola@nkl ~ $ mount
/dev/sda2 on / type ext4 (rw,errors=remount-ro,commit=0)
proc on /proc type proc (rw,noexec,nosuid,nodev)
none on /sys type sysfs (rw,noexec,nosuid,nodev)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
none on /dev type devtmpfs (rw,mode=0755)
none on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
none on /dev/shm type tmpfs (rw,nosuid,nodev)
none on /var/run type tmpfs (rw,nosuid,mode=0755)
none on /var/lock type tmpfs (rw,noexec,nosuid,nodev)
/dev/sda3 on /home type ext4 (rw,commit=0)
/dev/sdb1 on /media/1hdd type ext4 (rw,commit=0)
/dev/sdb2 on /media/2hdd type ext4 (rw,commit=0)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
gvfs-fuse-daemon on /home/nikola/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=nikola)
n00by
Level 1
Level 1
 
Posts: 8
Joined: Wed Aug 31, 2011 12:42 pm

Re: mount

Postby altair4 on Wed Aug 31, 2011 4:40 pm

This:
Screenshot.png
Screenshot.png (58.77 KiB) Viewed 831 times

And this:
/dev/sdb1 on /media/1hdd type ext4 (rw,commit=0)
/dev/sdb2 on /media/2hdd type ext4 (rw,commit=0)

And this:
/dev/sdb1: LABEL="bekap1" UUID="5071e4d9-16f5-4c50-ad1e-65694d6c2db0" TYPE="ext4"
/dev/sdb2: LABEL="bekap2" UUID="71a13818-cb61-46d8-b419-101cf06f9b78" TYPE="ext4"

Makes no sense.

Go into your file manager and unmount bekap1 and bekap2. Then run the following commands:
Code: Select all
sudo umount /media/1hdd

Code: Select all
sudo umount /media/2hdd

Code: Select all
sudo mount -a


Does bekap1 and bekap2 still show up as devices in your file manager?
Please add a [SOLVED] at the end of your original subject header if your question has been answered and solved.
altair4
Level 13
Level 13
 
Posts: 4661
Joined: Tue Feb 03, 2009 10:27 am

Re: mount

Postby n00by on Wed Aug 31, 2011 5:05 pm

yes.

Does bekap1 and bekap2 still show up as devices in your file manager?
n00by
Level 1
Level 1
 
Posts: 8
Joined: Wed Aug 31, 2011 12:42 pm

Re: mount

Postby n00by on Wed Aug 31, 2011 6:35 pm

so....

what next?
n00by
Level 1
Level 1
 
Posts: 8
Joined: Wed Aug 31, 2011 12:42 pm

Re: mount

Postby altair4 on Wed Aug 31, 2011 7:18 pm

I honestly don't know.

I don't know where bekap1 and bekap2 are coming from.

And bekap2 in the file manager can't possibly point to /media since bekap2 is mounted at /media/1hdd2.

As for /media/sdb2, it should be empty. It's not being used as a mount point in fstab.
Please add a [SOLVED] at the end of your original subject header if your question has been answered and solved.
altair4
Level 13
Level 13
 
Posts: 4661
Joined: Tue Feb 03, 2009 10:27 am

Linux Mint is funded by ads and donations.
 

Return to LXDE

Who is online

Users browsing this forum: No registered users and 4 guests