I’m pretty new to Linux and all of this, so go easy on me…
First, I have a MyBook 320GB external harddrive NTFS formatted. And it won’t mount in my OpenSuse Linux 11.1. I Googled about it, but I don’t get the instructions found here. What do I install to be able to use my MyBook?
Second, I got a “Brother” Printer DCP-185C. I Googled for the drivers and found them, but how and what do I install?
Are you connecting your external hard disk via USB?
If so, do the following:
(1) Start up your machine without connecting the external hard disk.
(2) Open a terminal (Press Alt+F2, type konsole and press Enter).
(3) Type the following:
su
tail -f /var/log/messages
(4) Connect the USB cable from the hard disk to the machine and power on the hard disk if it needs external power.
(5) You will see few messages coming up on the screen. Post those messages here.
May 6 12:57:35 linux-x9lu kernel: usb 2-3: new high speed USB device using ehci_hcd and address 8
May 6 12:57:35 linux-x9lu kernel: usb 2-3: configuration #1 chosen from 1 choice
May 6 12:57:35 linux-x9lu kernel: scsi6 : SCSI emulation for USB Mass Storage devices
May 6 12:57:35 linux-x9lu kernel: usb 2-3: New USB device found, idVendor=1058, idProduct=1100
May 6 12:57:35 linux-x9lu kernel: usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 6 12:57:35 linux-x9lu kernel: usb 2-3: Product: My Book
May 6 12:57:35 linux-x9lu kernel: usb 2-3: Manufacturer: Western Digital
May 6 12:57:35 linux-x9lu kernel: usb 2-3: SerialNumber: 57442D574341525730373831333231
May 6 12:57:35 linux-x9lu kernel: usb-storage: device found at 8
May 6 12:57:35 linux-x9lu kernel: usb-storage: waiting for device to settle before scanning
May 6 12:57:36 linux-x9lu kernel: scsi 6:0:0:0: Direct-Access WD 3200AAJ External 1.65 PQ: 0 ANSI: 0
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors: (320GB/298GiB)
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] Write Protect is off
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] Mode Sense: 00 00 00 00
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors: (320GB/298GiB)
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] Write Protect is off
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] Mode Sense: 00 00 00 00
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
May 6 12:57:36 linux-x9lu kernel: sdb: sdb1
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: [sdb] Attached SCSI disk
May 6 12:57:36 linux-x9lu kernel: sd 6:0:0:0: Attached scsi generic sg2 type 0
May 6 12:57:36 linux-x9lu kernel: usb-storage: device scan complete
$LogFile indicates unclean shutdown (0, 0)
Failed to mount ‘/dev/sdb1’: Operation not supported
Mount is denied because NTFS is marked to be in use. Choose one action:
Choice 1: If you have Windows then disconnect the external devices by
clicking on the ‘Safely Remove Hardware’ icon in the Windows
taskbar then shutdown Windows cleanly.
Choice 2: If you don’t have Windows then you can use the ‘force’ option for
your own responsibility. For example type on the command line:
mount -t ntfs-3g /dev/sdb1 /media -o force
Or add the option to the relevant row in the /etc/fstab file:
/dev/sdb1 /media ntfs-3g force 0 0
Disk /dev/sda: 160.0 GB, 160000000000 bytes
255 heads, 63 sectors/track, 19452 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xe8000000
Device Boot Start End Blocks Id System
/dev/sda1 1 262 2104483+ 82 Linux swap / Solaris
/dev/sda2 * 263 2873 20972857+ 83 Linux
/dev/sda3 2874 19452 133170817+ 83 Linux
Disk /dev/sdb: 320.0 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x44fdfe06
Device Boot Start End Blocks Id System
/dev/sdb1 1 38913 312568641 7 HPFS/NTFS
Well, forcing it, worked. Now its showing all the files and stuff on the external hard drive. Do I need to keep forcing it every time I need it though?