Mounting a 2nd drive permanently

Asked by Bruce M.

  Seems like I have been reading all the questions here forever on this subject. If I saw the answer I missed it.
  Lets start with this (you'll ask if I don't I'm sure).

bruloo@The-Team:~$ sudo fdisk -l
Password:

Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot Start End Blocks Id System
/dev/sda1 * 1 1305 10482381 7 HPFS/NTFS
/dev/sda2 1306 9728 67657747+ f W95 Ext'd (LBA)
/dev/sda5 1306 9591 66557263+ 83 Linux
/dev/sda6 9592 9728 1100421 82 Linux swap / Solaris

Disk /dev/sdb: 40.0 GB, 40020664320 bytes
255 heads, 63 sectors/track, 4865 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot Start End Blocks Id System
/dev/sdb1 1 4865 39078081 83 Linux
bruloo@The-Team:~$
----------------
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda5
UUID=615f0c8f-d90d-4910-8361-8b43750446a2 / ext3 defaults,errors=remount-ro 0 1
# /dev/sda1
UUID=2CE8219FE8216872 /media/sda1 ntfs defaults,nls=utf8,umask=007,gid=46 0 1
# /dev/sda6
UUID=6d528ba5-ca92-470e-a05e-8e2ceada79c3 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
/dev/sda1 /media/sda1 ntfs nls=iso8859-1,group,users,noauto,umask=000,user,owner,ro 0 0
/dev/sda5 /media/sda5 ext3 defaults 0 0
/dev/sdb1 /media/sdb1 ext3 defaults 0 0

  OK. /dev/sdb1 is not mountable by anyone but root.
  How dare he assume command. :))
  I want to steal ownership from root and give it to me: bruloo. Call me Robin Hood, and I'm poor.
  To use it as a storage device and therefore have it mountable at all times with full read write execute commands allowed.

  How can I achieve this?
  Ubuntu put an icon on my desktop for the Windows partition that I do NOT want at all. (Can I get rid of it permenantly?)
  I know: I'll trade ROOT 1 40G HD for the Windows partition. :)

Bruce Milmine

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Bruce M.
Solved:
Last query:
Last reply:
Revision history for this message
vonHalenbach (lustik) said :
#1

Hi Bruce!

This is not easy to do. Good, that you already provided the most important informations.

I see, that the first partition on the first harddrive has a NTFS on it. This, i assume is the partition with windows on it. Do you want to keep it, or do you want to delete it and use for Linux? Did you backup all your important data on a usb memory stick or on CD ?

You sayd, you had installed Ubuntu. Do you want to keep it as it is or is it possible, when you don't want to keep the windows partition as it is, delete?

If you want to get rid of windows, it is the easiest thing to install ubuntu again completly( you might want to try the new gutsy gibbon?) and say explitcitly 'overwrite and use all harddisks for Linux'. If you just want the icon from your desktop, you can simply delete the icon (your windows partition won't be deleted).

To make you able to mount sdb1 as normal user, you have to edit (as superuser) the last line of the /etc/fstab

Revision history for this message
Bruce M. (canar-ciudad) said :
#2

Hi vonHalenbach, (can I call you vonH for short?)

  I have 7.04 up and running with W2K (which I'm not using but need incase there is a problem with my ISP.)
  I want to keep everything as it is except:

  I want FULL permissions to my 40G HD: /dev/sdb1 /media/sdb1 ext3 defaults 0 0
  So I can use it as a storage device. There is no sense in having a second drive if I can't use it.

Bruce Milmine

Revision history for this message
Bruce M. (canar-ciudad) said :
#3

To make you able to mount sdb1 as normal user, you have to edit (as superuser) the last line of the /etc/fstab

the last line now reads:

/dev/sdb1 /media/sdb1 ext3 defaults 0 0

  What do I change it to in order to become the "Owner"?

Bruce Milmine

Revision history for this message
Ergosys (ergosys) said :
#4

Take a look at the mount manpage (command: man mount): the option is either user or users. It doesn't actually make you the owner, but allows any user to mount the volume.

Revision history for this message
Bruce M. (canar-ciudad) said :
#5

Hi Ergosys ... good to see you.

  Ohhhhhhh, that's a lot of reading.
  I'll come back after reading some
  Thanks

Bruce Milmine

Revision history for this message
vonHalenbach (lustik) said :
#6

Bruce, you can call me Stefan.

Reading the manpage of mount is informative, but i think you want just a quick answer. ;-)
Be aware, that this file "etc/fstab" is a very important file of your system. Is it damaged or misconfigured, you can risk to not be able to boot into this system, so please duble check before you save your changes.

open a terminal and issue the command
sudo nano /etc/fstab

go with the cursor keys down to the bottom line

/dev/sdb1 /media/data ext3 users,atime,auto,rw,nodev,exec,nosuid 0 0

and edit it as shown above.

Instead of /media/data you could use any other descriptive name for it instead of data. The part with "auto" means, that it will be mounted every time you boot your system. You can change it to "noauto" if you want to mount it manually when you want to store data files on it. The command exec means, that you are able to use programs directly from this disk. "noexec" will forbid execution of programs on this disk. "rw" is good, because you usually want to be able to read and write to this disk. A "ro" in this line would only make you able to mount it as read only device, like a CD-rom.

When you changed the line, save your changes with Ctrl + o.

After the next reboot of your computer these changes will apply and you are able to see it in your filemanager or in a terminal with the command "df -h".

Cheers
Stefan

Revision history for this message
Bruce M. (canar-ciudad) said :
#7

Hola Stefan

  You said: Reading the manpage of mount is informative, but i think you want just a quick answer. ;-)
     How true you were. Althought I will continue to read the man page too.

  Before I changed /etc/fstab - I "saved as": /etc/fstab-1-2007-10-07
      being the 1st change on 2007-10-07

  Opened it again with: sudo gedit /etc/fstab - as I'm more comfortable with gedit.
  Here is what I now have:

/dev/sdb1 /media/mine ext3 users,atime,auto,rw,nodev,exec,nosuid 0 0

  Rebooted ... and still nothing.
  The only things I see in Nautlis is:

bruloo
Documents
Desktop
File System
Floppy Drive
W2K

  Could it be that /mine doesn't exist?
  The drive is partitioned and formatted ext3 but has "nothing" on it.
  I'm not going to give up.

Bruce Milmine

Revision history for this message
vonHalenbach (lustik) said :
#8

Almost there.

All is as it should be. You just have to point your nautilus to /media to be able to see the folder /mine already mounted and ready for your files ;-)

You can probably add a link on your desktop with the harddrive in there. mount point is /media/mine

When you type in a terminal

df -h

you should be able to see it too.

Revision history for this message
Bruce M. (canar-ciudad) said :
#9

Hi Stefan,

  Nautlis doesn't show any /media :(
  The only things I see in Nautlis is:

bruloo
Documents
Desktop
File System
Floppy Drive
W2K

  Here are the results for df -h:

bruloo@The-Team:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 63G 3.5G 56G 6% /
varrun 252M 100K 252M 1% /var/run
varlock 252M 0 252M 0% /var/lock
procbususb 252M 100K 252M 1% /proc/bus/usb
udev 252M 100K 252M 1% /dev
devshm 252M 0 252M 0% /dev/shm
lrm 252M 33M 219M 14% /lib/modules/2.6.20-16-generic/volatile
/dev/sda5 63G 3.5G 56G 6% /media/sda5
bruloo@The-Team:~$

  ... can't see /dev/sdb there at all. :(

  Again just to show you:

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda5
UUID=615f0c8f-d90d-4910-8361-8b43750446a2 / ext3 defaults,errors=remount-ro 0 1
# /dev/sda1
UUID=2CE8219FE8216872 /media/sda1 ntfs defaults,nls=utf8,umask=007,gid=46 0 1
# /dev/sda6
UUID=6d528ba5-ca92-470e-a05e-8e2ceada79c3 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
/dev/sda1 /media/sda1 ntfs nls=iso8859-1,group,users,noauto,umask=000,user,owner,ro 0 0
/dev/sda5 /media/sda5 ext3 defaults 0 0
/dev/sdb1 /media/mine ext3 users,atime,auto,rw,nodev,exec,nosuid 0 0

Bruce Milmine

Revision history for this message
Bruce M. (canar-ciudad) said :
#10

Hi Stefan,

  Thought I'd add this.
  When I look at /dev/sdb1 with GParted I see:

<Partition> <Filesystem> <Mountpoint> <Size> Used> <Unused> <Flags>
/dev/sdb1/ ext3 /media/mine 37.27 GB 775.37 MB 36.51 GB {Flags blank}

  and the graphical area shows a small yellow block to the left (the used stuff I would guess).

Bruce

Revision history for this message
vonHalenbach (lustik) said :
#11

Okay, there seems to be something that prevents the system from mounting the disk.

In a terminal you should issue the command:

dmesg

Then you get information about your system and the last boot. I assume, that the filesystem of the harddisk needs to be checked, before it can be mounted.

Filesystems should only be checked, when they are unmounted. Please check, if it is still unmounted and then use the command :

sudo fsck.ext3 /dev/sdb1

in the terminal. After this check, you should be able to mount it.

mount /media/mine

Revision history for this message
Bruce M. (canar-ciudad) said :
#12

WoW!!! I hope you can read this:

bruloo@The-Team:~$ dmesg
[ 0.000000] Linux version 2.6.20-16-generic (root@terranova) (gcc version 4.1.2 (Ubuntu 4.1.2-0ubuntu4)) #2 SMP Sun Sep 23 19:50:39 UTC 2007 (Ubuntu 2.6.20-16.32-generic)
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] sanitize start
[ 0.000000] sanitize end
[ 0.000000] copy_e820_map() start: 0000000000000000 size: 000000000009fc00 end: 000000000009fc00 type: 1
[ 0.000000] copy_e820_map() type is E820_RAM
[ 0.000000] copy_e820_map() start: 000000000009fc00 size: 0000000000000400 end: 00000000000a0000 type: 2
[ 0.000000] copy_e820_map() start: 00000000000e0000 size: 0000000000020000 end: 0000000000100000 type: 2
[ 0.000000] copy_e820_map() start: 0000000000100000 size: 000000001fdc0000 end: 000000001fec0000 type: 1
[ 0.000000] copy_e820_map() type is E820_RAM
[ 0.000000] copy_e820_map() start: 000000001fec0000 size: 0000000000038000 end: 000000001fef8000 type: 3
[ 0.000000] copy_e820_map() start: 000000001fef8000 size: 0000000000008000 end: 000000001ff00000 type: 4
[ 0.000000] copy_e820_map() start: 00000000ffb80000 size: 0000000000080000 end: 00000000ffc00000 type: 2
[ 0.000000] copy_e820_map() start: 00000000fff00000 size: 0000000000100000 end: 0000000100000000 type: 2
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000001fec0000 (usable)
[ 0.000000] BIOS-e820: 000000001fec0000 - 000000001fef8000 (ACPI data)
[ 0.000000] BIOS-e820: 000000001fef8000 - 000000001ff00000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000ffb80000 - 00000000ffc00000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[ 0.000000] 0MB HIGHMEM available.
[ 0.000000] 510MB LOWMEM available.
[ 0.000000] Entering add_active_range(0, 0, 130752) 0 entries of 256 used
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] Normal 4096 -> 130752
[ 0.000000] HighMem 130752 -> 130752
[ 0.000000] early_node_map[1] active PFN ranges
[ 0.000000] 0: 0 -> 130752
[ 0.000000] On node 0 totalpages: 130752
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 4064 pages, LIFO batch:0
[ 0.000000] Normal zone: 989 pages used for memmap
[ 0.000000] Normal zone: 125667 pages, LIFO batch:31
[ 0.000000] HighMem zone: 0 pages used for memmap
[ 0.000000] DMI 2.3 present.
[ 0.000000] ACPI: RSDP (v000 AMI ) @ 0x000ff980
[ 0.000000] ACPI: RSDT (v001 D815EA EA81510A 0x20000628 MSFT 0x00001011) @ 0x1fef0000
[ 0.000000] ACPI: FADT (v001 D815EA EA81510A 0x20000628 MSFT 0x00001011) @ 0x1fef1000
[ 0.000000] ACPI: DSDT (v001 D815EA EA81510A 0x00000012 MSFT 0x0100000b) @ 0x00000000
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] Allocating PCI resources starting at 20000000 (gap: 1ff00000:dfc80000)
[ 0.000000] Detected 797.470 MHz processor.
[ 18.012841] Built 1 zonelists. Total pages: 129731
[ 18.012850] Kernel command line: root=UUID=615f0c8f-d90d-4910-8361-8b43750446a2 ro quiet splash
[ 18.013357] Local APIC disabled by BIOS -- you can enable it with "lapic"
[ 18.013378] mapped APIC to ffffd000 (0140b000)
[ 18.013387] Enabling fast FPU save and restore... done.
[ 18.013394] Enabling unmasked SIMD FPU exception support... done.
[ 18.013419] Initializing CPU#0
[ 18.013521] PID hash table entries: 2048 (order: 11, 8192 bytes)
[ 18.016039] Console: colour VGA+ 80x25
[ 18.017163] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 18.018650] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 18.078942] Memory: 507448k/523008k available (1993k kernel code, 14984k reserved, 900k data, 328k init, 0k highmem)
[ 18.078974] virtual kernel memory layout:
[ 18.078977] fixmap : 0xfff4e000 - 0xfffff000 ( 708 kB)
[ 18.078981] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
[ 18.078985] vmalloc : 0xe0800000 - 0xff7fe000 ( 495 MB)
[ 18.078988] lowmem : 0xc0000000 - 0xdfec0000 ( 510 MB)
[ 18.078992] .init : 0xc03d9000 - 0xc042b000 ( 328 kB)
[ 18.078995] .data : 0xc02f2429 - 0xc03d36d4 ( 900 kB)
[ 18.078999] .text : 0xc0100000 - 0xc02f2429 (1993 kB)
[ 18.079009] Checking if this processor honours the WP bit even in supervisor mode... Ok.
[ 18.157518] Calibrating delay using timer specific routine.. 1596.27 BogoMIPS (lpj=3192544)
[ 18.158104] Security Framework v1.0.0 initialized
[ 18.158124] SELinux: Disabled at boot.
[ 18.158166] Mount-cache hash table entries: 512
[ 18.158490] CPU: After generic identify, caps: 0383f9ff 00000000 00000000 00000000 00000000 00000000 00000000
[ 18.158519] CPU: L1 I cache: 16K, L1 D cache: 16K
[ 18.158526] CPU: L2 cache: 256K
[ 18.158536] CPU: After all inits, caps: 0383f9ff 00000000 00000000 00000040 00000000 00000000 00000000
[ 18.158564] Compat vDSO mapped to ffffe000.
[ 18.158584] Remapping vsyscall page to ffffe000
[ 18.158609] Checking 'hlt' instruction... OK.
[ 18.174322] SMP alternatives: switching to UP code
[ 18.174750] Freeing SMP alternatives: 11k freed
[ 18.175242] Early unpacking initramfs... done
[ 19.027730] ACPI: Core revision 20060707
[ 19.029301] ACPI: Looking for DSDT in initramfs... file /DSDT.aml not found, using machine DSDT.
[ 19.033332] ACPI: setting ELCR to 0200 (from 0e00)
[ 19.034939] CPU0: Intel Pentium III (Coppermine) stepping 03
[ 19.034954] SMP motherboard not detected.
[ 19.034961] Local APIC not detected. Using dummy APIC emulation.
[ 19.035073] Brought up 1 CPUs
[ 19.035757] Booting paravirtualized kernel on bare hardware
[ 19.035910] Time: 15:13:33 Date: 09/07/107
[ 19.036000] NET: Registered protocol family 16
[ 19.036272] EISA bus registered
[ 19.036285] ACPI: bus type pci registered
[ 19.037070] PCI: PCI BIOS revision 2.10 entry at 0xfda95, last bus=1
[ 19.037077] PCI: Using configuration type 1
[ 19.037082] Setting up standard PCI resources
[ 19.051951] ACPI: Interpreter enabled
[ 19.051966] ACPI: Using PIC for interrupt routing
[ 19.053186] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 19.053206] PCI: Probing PCI hardware (bus 00)
[ 19.056452] Boot video device is 0000:00:02.0
[ 19.056581] PCI quirk: region 0400-047f claimed by ICH4 ACPI/GPIO/TCO
[ 19.056589] PCI quirk: region 0500-053f claimed by ICH4 GPIO
[ 19.056980] PCI: Firmware left 0000:01:08.0 e100 interrupts enabled, disabling
[ 19.057060] PCI: Transparent bridge - 0000:00:1e.0
[ 19.057100] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 19.059818] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
[ 19.067783] ACPI: Power Resource [URP1] (off)
[ 19.067950] ACPI: Power Resource [URP2] (off)
[ 19.068106] ACPI: Power Resource [FDDP] (off)
[ 19.068269] ACPI: Power Resource [LPTP] (off)
[ 19.071041] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12)
[ 19.071625] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11 12)
[ 19.072172] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12) *0, disabled.
[ 19.072723] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12)
[ 19.073284] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11 12)
[ 19.073860] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12) *0, disabled.
[ 19.074407] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12) *0, disabled.
[ 19.074961] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 *10 11 12)
[ 19.075254] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 19.075284] pnp: PnP ACPI init
[ 19.088312] pnp: PnP ACPI: found 15 devices
[ 19.088329] PnPBIOS: Disabled by ACPI PNP
[ 19.088492] PCI: Using ACPI for IRQ routing
[ 19.088502] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
[ 19.090673] NET: Registered protocol family 8
[ 19.090680] NET: Registered protocol family 20
[ 19.092412] PCI: Ignore bogus resource 6 [0:0] of 0000:00:02.0
[ 19.092432] PCI: Bridge: 0000:00:1e.0
[ 19.092439] IO window: d000-dfff
[ 19.092450] MEM window: ff800000-ff8fffff
[ 19.092459] PREFETCH window: f6a00000-f6afffff
[ 19.092483] PCI: Setting latency timer of device 0000:00:1e.0 to 64
[ 19.092556] NET: Registered protocol family 2
[ 19.137686] IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
[ 19.137941] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 19.138415] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 19.138693] TCP: Hash tables configured (established 16384 bind 8192)
[ 19.138701] TCP reno registered
[ 19.153882] checking if image is initramfs... it is
[ 20.753472] Freeing initrd memory: 6780k freed
[ 20.754651] audit: initializing netlink socket (disabled)
[ 20.754695] audit(1191770014.924:1): initialized
[ 20.755090] VFS: Disk quotas dquot_6.5.1
[ 20.755149] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 20.755297] io scheduler noop registered
[ 20.755305] io scheduler anticipatory registered
[ 20.755311] io scheduler deadline registered
[ 20.755341] io scheduler cfq registered (default)
[ 20.755964] isapnp: Scanning for PnP cards...
[ 21.110018] isapnp: No Plug & Play device found
[ 21.188323] Real Time Clock Driver v1.12ac
[ 21.188445] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
[ 21.188661] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 21.189055] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 21.190635] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 21.191197] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 21.191846] mice: PS/2 mouse device common for all mice
[ 21.193525] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
[ 21.194185] input: Macintosh mouse button emulation as /class/input/input0
[ 21.194273] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
[ 21.194284] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
[ 21.194737] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 21.198782] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 21.198799] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 21.199216] EISA: Probing bus 0 at eisa.0
[ 21.199273] EISA: Detected 0 cards.
[ 21.229515] TCP cubic registered
[ 21.229537] NET: Registered protocol family 1
[ 21.229599] Using IPI No-Shortcut mode
[ 21.229771] ACPI: (supports S0 S1 S4 S5)
[ 21.229878] Magic number: 11:308:234
[ 21.229949] hash matches device ttyv4
[ 21.231371] Freeing unused kernel memory: 328k freed
[ 21.233340] Time: tsc clocksource has been installed.
[ 21.243323] input: AT Translated Set 2 keyboard as /class/input/input1
[ 22.909015] Capability LSM initialized
[ 24.589862] SCSI subsystem initialized
[ 24.613740] libata version 2.20 loaded.
[ 24.628251] ata_piix 0000:00:1f.1: version 2.10ac1
[ 24.628319] PCI: Setting latency timer of device 0000:00:1f.1 to 64
[ 24.628467] ata1: PATA max UDMA/100 cmd 0x000101f0 ctl 0x000103f6 bmdma 0x0001ffa0 irq 14
[ 24.628546] ata2: PATA max UDMA/100 cmd 0x00010170 ctl 0x00010376 bmdma 0x0001ffa8 irq 15
[ 24.628584] scsi0 : ata_piix
[ 24.672376] usbcore: registered new interface driver usbfs
[ 24.672441] usbcore: registered new interface driver hub
[ 24.672501] usbcore: registered new device driver usb
[ 24.676768] USB Universal Host Controller Interface driver v3.0
[ 24.784979] e100: Intel(R) PRO/100 Network Driver, 3.5.17-k2-NAPI
[ 24.784992] e100: Copyright(c) 1999-2006 Intel Corporation
[ 24.797563] ata1.00: ata_hpa_resize 1: sectors = 156301488, hpa_sectors = 156301488
[ 24.797578] ata1.00: ATA-6: WDC WD800BB-55JKC0, 05.01C05, max UDMA/100
[ 24.797586] ata1.00: 156301488 sectors, multi 16: LBA
[ 24.798498] ata1.01: ata_hpa_resize 1: sectors = 78165360, hpa_sectors = 78165360
[ 24.798510] ata1.01: ATA-5: WDC WD400EB-00CPF0, 06.04G06, max UDMA/100
[ 24.798518] ata1.01: 78165360 sectors, multi 16: LBA
[ 24.805577] ata1.00: ata_hpa_resize 1: sectors = 156301488, hpa_sectors = 156301488
[ 24.805596] ata1.00: configured for UDMA/100
[ 24.814288] ata1.01: ata_hpa_resize 1: sectors = 78165360, hpa_sectors = 78165360
[ 24.814306] ata1.01: configured for UDMA/100
[ 24.814340] scsi1 : ata_piix
[ 24.986655] Floppy drive(s): fd0 is 1.44M
[ 25.078119] FDC 0 is a post-1991 82077
[ 25.297303] ata2.00: ATAPI, max UDMA/66
[ 25.297317] ata2.01: ATAPI, max MWDMA2
[ 25.461300] ata2.00: configured for UDMA/66
[ 25.625377] ata2.01: configured for MWDMA2
[ 25.625764] scsi 0:0:0:0: Direct-Access ATA WDC WD800BB-55JK 05.0 PQ: 0 ANSI: 5
[ 25.626791] scsi 0:0:1:0: Direct-Access ATA WDC WD400EB-00CP 06.0 PQ: 0 ANSI: 5
[ 25.628364] scsi 1:0:0:0: CD-ROM SONY DVD RW AW-Q170A 1.70 PQ: 0 ANSI: 5
[ 25.629460] scsi 1:0:1:0: CD-ROM HL-DT-ST CD-ROM GCR-8520B 1.00 PQ: 0 ANSI: 5
[ 25.634994] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
[ 25.635008] PCI: setting IRQ 11 as level-triggered
[ 25.635015] ACPI: PCI Interrupt 0000:00:1f.2[D] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
[ 25.635043] PCI: Setting latency timer of device 0000:00:1f.2 to 64
[ 25.635052] uhci_hcd 0000:00:1f.2: UHCI Host Controller
[ 25.635339] uhci_hcd 0000:00:1f.2: new USB bus registered, assigned bus number 1
[ 25.635387] uhci_hcd 0000:00:1f.2: irq 11, io base 0x0000ef40
[ 25.635729] usb usb1: configuration #1 chosen from 1 choice
[ 25.635797] hub 1-0:1.0: USB hub found
[ 25.635824] hub 1-0:1.0: 2 ports detected
[ 25.679656] SCSI device sda: 156301488 512-byte hdwr sectors (80026 MB)
[ 25.679738] sda: Write Protect is off
[ 25.679745] sda: Mode Sense: 00 3a 00 00
[ 25.679788] SCSI device sda: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 25.679961] SCSI device sda: 156301488 512-byte hdwr sectors (80026 MB)
[ 25.679988] sda: Write Protect is off
[ 25.679994] sda: Mode Sense: 00 3a 00 00
[ 25.680035] SCSI device sda: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 25.680044] sda: sda1 sda2 < sda5ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 10
[ 25.737949] PCI: setting IRQ 10 as level-triggered
[ 25.737957] ACPI: PCI Interrupt 0000:00:1f.4[C] -> Link [LNKH] -> GSI 10 (level, low) -> IRQ 10
[ 25.737985] PCI: Setting latency timer of device 0000:00:1f.4 to 64
[ 25.737993] uhci_hcd 0000:00:1f.4: UHCI Host Controller
[ 25.738061] uhci_hcd 0000:00:1f.4: new USB bus registered, assigned bus number 2
[ 25.738106] uhci_hcd 0000:00:1f.4: irq 10, io base 0x0000ef80
[ 25.738381] usb usb2: configuration #1 chosen from 1 choice
[ 25.738448] hub 2-0:1.0: USB hub found
[ 25.738468] hub 2-0:1.0: 2 ports detected
[ 25.756887] sda6 >
[ 25.758678] sd 0:0:0:0: Attached scsi disk sda
[ 25.759179] SCSI device sdb: 78165360 512-byte hdwr sectors (40021 MB)
[ 25.759216] sdb: Write Protect is off
[ 25.759223] sdb: Mode Sense: 00 3a 00 00
[ 25.759265] SCSI device sdb: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 25.759408] SCSI device sdb: 78165360 512-byte hdwr sectors (40021 MB)
[ 25.759434] sdb: Write Protect is off
[ 25.759440] sdb: Mode Sense: 00 3a 00 00
[ 25.759482] SCSI device sdb: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 25.759491] sdb: sdb1
[ 25.784150] sd 0:0:1:0: Attached scsi disk sdb
[ 25.805144] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 25.805529] sd 0:0:1:0: Attached scsi generic sg1 type 0
[ 25.805886] scsi 1:0:0:0: Attached scsi generic sg2 type 5
[ 25.806245] scsi 1:0:1:0: Attached scsi generic sg3 type 5
[ 25.830702] sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
[ 25.830719] Uniform CD-ROM driver Revision: 3.20
[ 25.831459] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 25.842407] ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 11
[ 25.842424] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [LNKE] -> GSI 11 (level, low) -> IRQ 11
[ 25.865340] e100: eth0: e100_probe: addr 0xff8ff000, irq 11, MAC addr 00:D0:B7:E1:3D:54
[ 25.971632] sr1: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[ 25.972355] sr 1:0:1:0: Attached scsi CD-ROM sr1
[ 25.977151] usb 1-2: new full speed USB device using uhci_hcd and address 2
[ 26.150564] usb 1-2: configuration #1 chosen from 1 choice
[ 26.152524] hub 1-2:1.0: USB hub found
[ 26.155383] hub 1-2:1.0: 4 ports detected
[ 26.640532] Attempting manual resume
[ 26.640545] swsusp: Resume From Partition 8:6
[ 26.640550] PM: Checking swsusp image.
[ 26.664880] PM: Resume from disk failed.
[ 26.748238] kjournald starting. Commit interval 5 seconds
[ 26.748277] EXT3-fs: mounted filesystem with ordered data mode.
[ 38.172414] e100: eth0: e100_watchdog: link up, 100Mbps, full-duplex
[ 39.739503] NET: Registered protocol family 17
[ 41.924706] intel_rng: Firmware space is locked read-only. If you can't or
[ 41.924713] intel_rng: don't want to disable this in firmware setup, and if
[ 41.924718] intel_rng: you are certain that your system has a functional
[ 41.924722] intel_rng: RNG, try using the 'no_fwh_detect' option.
[ 42.016543] iTCO_vendor_support: vendor-support=0
[ 42.027157] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.01 (11-Nov-2006)
[ 42.027363] iTCO_wdt: failed to reset NO_REBOOT flag, reboot disabled by hardware
[ 42.027378] iTCO_wdt: No card detected
[ 42.540684] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 42.746152] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 42.768917] Linux agpgart interface v0.102 (c) Dave Jones
[ 42.775117] agpgart: Detected an Intel i815 Chipset.
[ 42.787504] agpgart: AGP aperture is 64M @ 0xf8000000
[ 43.190500] i810_smbus 0000:00:02.0: i810/i815 i2c device found.
[ 44.091450] input: PC Speaker as /class/input/input2
[ 44.690981] parport: PnPBIOS parport detected.
[ 44.691024] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
[ 44.848903] input: ImPS/2 Generic Wheel Mouse as /class/input/input3
[ 45.083338] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 9
[ 45.083353] PCI: setting IRQ 9 as level-triggered
[ 45.083360] ACPI: PCI Interrupt 0000:00:1f.5[B] -> Link [LNKB] -> GSI 9 (level, low) -> IRQ 9
[ 45.083417] PCI: Setting latency timer of device 0000:00:1f.5 to 64
[ 45.755871] intel8x0_measure_ac97_clock: measured 54705 usecs
[ 45.755888] intel8x0: clocking to 48000
[ 46.089292] lp0: using parport0 (interrupt-driven).
[ 46.147034] usbcore: registered new interface driver usbserial
[ 46.150835] drivers/usb/serial/usb-serial.c: USB Serial support registered for generic
[ 46.154888] usbcore: registered new interface driver usbserial_generic
[ 46.154908] drivers/usb/serial/usb-serial.c: USB Serial Driver core
[ 46.171645] drivers/usb/serial/usb-serial.c: USB Serial support registered for Handspring Visor / Palm OS
[ 46.175976] drivers/usb/serial/usb-serial.c: USB Serial support registered for Sony Clie 3.5
[ 46.179990] drivers/usb/serial/usb-serial.c: USB Serial support registered for Sony Clie 5.0
[ 46.183712] usbcore: registered new interface driver visor
[ 46.183731] drivers/usb/serial/visor.c: USB HandSpring Visor / Palm OS driver
[ 46.281217] Adding 1100412k swap on /dev/disk/by-uuid/6d528ba5-ca92-470e-a05e-8e2ceada79c3. Priority:-1 extents:1 across:1100412k
[ 46.557209] EXT3 FS on sda5, internal journal
[ 46.822029] NET: Registered protocol family 10
[ 46.822339] lo: Disabled Privacy Extensions
[ 47.138182] NTFS driver 2.1.28 [Flags: R/O MODULE].
[ 47.230687] NTFS volume version 3.0.
[ 48.406304] ibm_acpi: ec object not found
[ 48.484638] No dock devices found.
[ 48.539175] Using specific hotkey driver
[ 48.755739] input: Power Button (FF) as /class/input/input4
[ 48.756470] ACPI: Power Button (FF) [PWRF]
[ 48.787739] input: Sleep Button (CM) as /class/input/input5
[ 48.788441] ACPI: Sleep Button (CM) [SBTN]
[ 49.381874] pcc_acpi: loading...
[ 57.383121] eth0: no IPv6 routers present
[ 59.376103] ppdev: user-space parallel port driver
[ 61.367199] apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
[ 61.367218] apm: overridden by ACPI.
[ 62.541255] Bluetooth: Core ver 2.11
[ 62.541483] NET: Registered protocol family 31
[ 62.541488] Bluetooth: HCI device and connection manager initialized
[ 62.541499] Bluetooth: HCI socket layer initialized
[ 62.657428] Bluetooth: L2CAP ver 2.8
[ 62.657445] Bluetooth: L2CAP socket layer initialized
[ 63.895131] Bluetooth: RFCOMM socket layer initialized
[ 63.895183] Bluetooth: RFCOMM TTY layer initialized
[ 63.895189] Bluetooth: RFCOMM ver 1.8
[ 75.265971] eth0: no IPv6 routers present
[15774.005546] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.005569] Additional sense: Medium not present
[15774.005594] end_request: I/O error, dev sr0, sector 0
[15774.005604] Buffer I/O error on device sr0, logical block 0
[15774.005617] Buffer I/O error on device sr0, logical block 1
[15774.005626] Buffer I/O error on device sr0, logical block 2
[15774.005632] Buffer I/O error on device sr0, logical block 3
[15774.005640] Buffer I/O error on device sr0, logical block 4
[15774.005647] Buffer I/O error on device sr0, logical block 5
[15774.006507] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.006516] Additional sense: Medium not present
[15774.006527] end_request: I/O error, dev sr0, sector 24
[15774.006534] Buffer I/O error on device sr0, logical block 6
[15774.006541] Buffer I/O error on device sr0, logical block 7
[15774.008711] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.008723] Additional sense: Medium not present
[15774.008734] end_request: I/O error, dev sr0, sector 0
[15774.008741] Buffer I/O error on device sr0, logical block 0
[15774.009414] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.009423] Additional sense: Medium not present
[15774.009433] end_request: I/O error, dev sr0, sector 4
[15774.009440] Buffer I/O error on device sr0, logical block 1
[15774.012482] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.012496] Additional sense: Medium not present
[15774.012509] end_request: I/O error, dev sr0, sector 0
[15774.013179] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.013188] Additional sense: Medium not present
[15774.013199] end_request: I/O error, dev sr0, sector 4
[15774.016384] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.016401] Additional sense: Medium not present
[15774.016419] end_request: I/O error, dev sr0, sector 0
[15774.017145] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.017154] Additional sense: Medium not present
[15774.017164] end_request: I/O error, dev sr0, sector 4
[15774.018983] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.018998] Additional sense: Medium not present
[15774.019011] end_request: I/O error, dev sr0, sector 0
[15774.019756] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.019765] Additional sense: Medium not present
[15774.019775] end_request: I/O error, dev sr0, sector 4
[15774.021724] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.021741] Additional sense: Medium not present
[15774.021757] end_request: I/O error, dev sr0, sector 0
[15774.022402] sr 1:0:0:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.022410] Additional sense: Medium not present
[15774.022420] end_request: I/O error, dev sr0, sector 4
[15774.042690] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.042712] Additional sense: Medium not present
[15774.042736] end_request: I/O error, dev sr1, sector 0
[15774.044258] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.044273] Additional sense: Medium not present
[15774.044286] end_request: I/O error, dev sr1, sector 0
[15774.045353] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.045366] Additional sense: Medium not present
[15774.045378] end_request: I/O error, dev sr1, sector 4
[15774.047507] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.047521] Additional sense: Medium not present
[15774.047533] end_request: I/O error, dev sr1, sector 0
[15774.048522] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.048535] Additional sense: Medium not present
[15774.048545] end_request: I/O error, dev sr1, sector 4
[15774.050940] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.050955] Additional sense: Medium not present
[15774.050969] end_request: I/O error, dev sr1, sector 0
[15774.052039] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.052051] Additional sense: Medium not present
[15774.052063] end_request: I/O error, dev sr1, sector 4
[15774.054246] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.054260] Additional sense: Medium not present
[15774.054273] end_request: I/O error, dev sr1, sector 0
[15774.055261] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.055274] Additional sense: Medium not present
[15774.055286] end_request: I/O error, dev sr1, sector 4
[15774.057512] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.057530] Additional sense: Medium not present
[15774.057546] end_request: I/O error, dev sr1, sector 0
[15774.058614] sr 1:0:1:0: Device not ready: <6>: Current: sense key: Not Ready
[15774.058626] Additional sense: Medium not present
[15774.058638] end_request: I/O error, dev sr1, sector 4
[17629.520848] NTFS volume version 3.0.
bruloo@The-Team:~$

  Then:

bruloo@The-Team:~$ sudo fsck.ext3 /dev/sdb1
e2fsck 1.40-WIP (14-Nov-2006)
/dev/sdb1: clean, 11/4889248 files, 198495/9769520 blocks
bruloo@The-Team:~$

  Then:

bruloo@The-Team:~$ mount /media/mine
mount: mount point /media/mine does not exist
bruloo@The-Team:~$

  :(

Revision history for this message
Bruce M. (canar-ciudad) said :
#13

Hola Stefan,

  We are getting there. I just rebooted and "mine" is there in Nautilis
  I see a (in RED) [x] lost+found folder
  I don't have permissions to see the contents of it.

  and ... still no permissions to create folders or files.
  When I right click and check >Properties>Permissions
  Owner: root
  Folder Access Create and delete files {greyed out}
  Group: root
  Folder Access: Access files {greyed out}
  Others [blank]
  Folder Access: Access files {greyed out}
  Execute: [blue] allow executing file as program {greyed out}
  SELinux Context: unknown
  Last changed: unknown
----------------------------------------------------------------------------------
You are not the owner, so you can't change these permissions.
----------------------------------------------------------------------------------

  BUT at least we are this far now.

Bruce

Revision history for this message
vonHalenbach (lustik) said :
#14

You are right. The mount point is missing.

sudo mkdir /media/mine

sudo chown bruloo /media/mine

mount /media/mine

I hope this helps. :)

Revision history for this message
vonHalenbach (lustik) said :
#15

when this still not works you have to change the group of the user from root to your group. Most probably bruloo. You can check your group with the command:

groups

If there is bruloo, in the list it is your group.

Then you issue the command

sudo chgrp bruloo /media/mine

and then

mount /media/mine

This should it be. finished.

Greetings
Stefan

Revision history for this message
Bruce M. (canar-ciudad) said :
#16

bruloo@The-Team:~$ sudo mkdir /media/mine
Password:
mkdir: cannot create directory `/media/mine': File exists
bruloo@The-Team:~$ sudo chown bruloo /media/mine
bruloo@The-Team:~$ mount /media/mine
mount: /dev/sdb1 already mounted or /media/mine busy
mount: according to mtab, /dev/sdb1 is already mounted on /media/mine
bruloo@The-Team:~$

  ... IT WORKED!!!!!!!!!!!!!!!!!

   Copying archive files over now.

  Thanks Stefan, have a GREAT day, month year ... LIFE!

Bruce Milmine