LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 08-24-2006, 06:25 PM   #1
KornFused
LQ Newbie
 
Registered: Jul 2006
Location: Dallas, Texas
Distribution: MEPIS 6.5.03
Posts: 26

Rep: Reputation: 15
Question Mounting SCSI R/W Drive


I know this problem is faced by many people because there are numerous post about it, but I haven't found the one that will answer my situation.

I have a Pioneer DVD drive (ISA) and then my R/W drive is a Plextor SCSI Drive. I can play CDs from both drives. When I try to burn a CD with K3B it only sees the Pioneer Drive.


Here is the fstab output:

cat /etc/fstab
# Pluggable devices are handled by uDev, they are not in fstab
/dev/hda1 / ext3 defaults,noatime 1 1
/dev/hda2 swap swap sw,pri=1 0 0
none /proc proc defaults 0 0
none /proc/bus/usb usbfs devmode=0666 0 0
none /dev/pts devpts mode=0622 0 0
none /sys sysfs defaults 0 0
/dev/hda3 /home ext3 defaults,noatime 1 2
/dev/cdrom /media/cdrom iso9660,udf noauto,users,exec,ro 0 0
/dev/fd0 /media/floppy vfat,ext2 noauto,users,exec,rw 0 0
# Dynamic entries below, identified by 'users' option
/dev/sda1 /mnt/sda1 ext3 noauto,users,exec 0 0
/dev/sda2 /mnt/sda2 vfat,ext3,ext2,reiserfs noauto,users,exec 0 0
/dev/fd0 /media/floppy vfat,ext2 noauto,users,exec,rw 0 0

Here are the entries from DMESG

[ 92.781866] Type: CD-ROM ANSI SCSI revision:
02
[ 92.781908] target0:0:2: Beginning Domain Validation
[ 92.783967] target0:0:2: FAST-10 SCSI 10.0 MB/s ST (100 ns, offset 15)
[ 92.785287] target0:0:2: Domain Validation skipping write tests
[ 92.785299] target0:0:2: Ending Domain Validation
[ 92.791235] sr0: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
[ 92.791806] sr 0:0:2:0: Attached scsi CD-ROM sr0

I tried this with the following results:

root@1[~]# mount dev/sr0 /media/cdrw
mount: special device dev/sr0 does not exist
 
Old 08-24-2006, 07:09 PM   #2
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
Not sure exactly where to start here but a Scsi CD device will be IDed as /dev/scd*.
If the only scsi cd type device and no USB or Firewire CD devices then it should be /dev/scd0
Lets make sure that exist before going on.

Brian1
 
Old 08-25-2006, 06:47 PM   #3
KornFused
LQ Newbie
 
Registered: Jul 2006
Location: Dallas, Texas
Distribution: MEPIS 6.5.03
Posts: 26

Original Poster
Rep: Reputation: 15
Post This is gettin more and more confusing

Brian,

It looks like you have taken me under your wing.

I went to /dev/ and found SCD0 listed there. I checked the permissions there and made sure they were set to RW for everyone.

Then I tried this:
root@3[~]# mount /dev/scd0 /media/cdrw
mount: No medium found

I then added this line to fstab

# Pluggable devices are handled by uDev, they are not in fstab
/dev/hda1 / ext3 defaults,noatime 1 1
/dev/hda2 swap swap sw,pri=1 0 0
none /proc proc defaults 0 0
none /proc/bus/usb usbfs devmode=0666 0 0
none /dev/pts devpts mode=0622 0 0
none /sys sysfs defaults 0 0
/dev/hda3 /home ext3 defaults,noatime 1 2
/dev/cdrom /media/cdrom iso9660,udf noauto,users,exec,ro 0 0
/dev/fd0 /media/floppy vfat,ext2 noauto,users,exec,rw 0 0
# Dynamic entries below, identified by 'users' option
/dev/sda1 /mnt/sda1 ext3 noauto,users,exec 0 0
/dev/sda2 /mnt/sda2 vfat,ext3,ext2,reiserfs noauto,users,exec 0 0
/dev/scd0 /media/cdrw iso9660,udf noauto,users,exec,rw 0 0
/dev/fd0 /media/floppy vfat,ext2 noauto,users,exec,rw 0 0

Then I tried to attach the drive into K3b

It said there was no such device in the /dev folder.

I rebooted my computer and the line I added to FSTAB disappeared.
It seems that the FSTAB file is updated on boot up.
 
Old 08-26-2006, 10:26 AM   #4
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
There are a few things that update fstab file. One the service called kudzu. Second using the mount point in /media is not the best way. change the mount point to
/dev/scd0 /mnt/cdrw auto noauto,users,exec,rw 0 0
Make sure you have a directory /mnt/cdrw created.

K3B should not require a line in fstab to recognize a drive for writing purposes. Not sure what is going on here. Lets check a few things.
Version of K3B using?
How was K3B installed? source or package like rpm or deb
Firmware of the drive?
Scsi card model and version?
Loaded modules? /sbin/lsmod

If the scsi module is loaded and drive is seen in /dev as /dev/scd0 then I have the feeling it may be a firmware of the drive or K3B itself. Since using 2.6 kernel then the ide-scsi emualtion is not needed in the boot loader.

Brian1
 
Old 08-26-2006, 11:23 AM   #5
KornFused
LQ Newbie
 
Registered: Jul 2006
Location: Dallas, Texas
Distribution: MEPIS 6.5.03
Posts: 26

Original Poster
Rep: Reputation: 15
Post Here are my dumps

Brian,

Here is my system information

Password:
root@1[~]# deldir /media/cdrw
-su: deldir: command not found
root@1[~]# rmdir /media/cdrw
root@1[~]# mkdir /mnt/cdrw
root@1[~]# mount /dev/scd0 /mnt/cdrw
mount: No medium found
root@1[~]# /sbin/lsmod
Module Size Used by
r128 38912 1
drm 66196 2 r128
binfmt_misc 11144 1
apm 19692 1
ppdev 8452 0
ipt_limit 2432 2
ipt_state 2048 66
ipt_LOG 6016 2
ipt_REJECT 5248 2
ip_conntrack_ftp 7280 0
ip_conntrack_irc 6640 0
ip_conntrack 47148 3 ipt_state,ip_conntrack_ftp,ip_conntrack_irc
nfnetlink 6296 1 ip_conntrack
ndiswrapper 156628 0
cpufreq_userspace 4440 0
cpufreq_powersave 1920 0
cpufreq_ondemand 6172 0
speedstep_lib 4228 0
freq_table 4484 0
processor 23360 0
dm_mod 52152 0
md_mod 64084 0
yenta_socket 25740 0
rsrc_nonstatic 12288 1 yenta_socket
pcmcia 36668 0
pcmcia_core 38672 3 yenta_socket,rsrc_nonstatic,pcmcia
af_packet 21000 2
usbhid 33888 0
sworks_agp 8864 0
amd_k7_agp 8204 0
ali_agp 6656 0
sis_agp 8452 0
ati_agp 8332 0
nvidia_agp 7964 0
via_agp 9600 0
8139cp 20352 0
floppy 55620 0
parport_pc 32708 1
lp 10820 0
parport 32968 3 ppdev,parport_pc,lp
pcspkr 2052 0
8139too 25088 0
mii 5376 2 8139cp,8139too
rtc 12468 0
psmouse 32772 0
serio_raw 6916 0
snd_als4000 13280 2
snd_sb_common 14848 1 snd_als4000
gameport 14728 1 snd_als4000
snd_pcm_oss 46368 0
snd_mixer_oss 16896 2 snd_pcm_oss
snd_pcm 79880 2 snd_als4000,snd_pcm_oss
snd_page_alloc 10248 1 snd_pcm
snd_opl3_lib 10112 1 snd_als4000
snd_timer 22660 2 snd_pcm,snd_opl3_lib
snd_hwdep 8864 1 snd_opl3_lib
snd_mpu401_uart 7296 1 snd_als4000
snd_rawmidi 23328 1 snd_mpu401_uart
snd_seq_device 8204 2 snd_opl3_lib,snd_rawmidi
ide_floppy 17408 0
snd 50276 13 snd_als4000,snd_sb_common,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_opl3_lib,snd_timer,snd_hwdep,snd_mpu 401_uart,snd_rawmidi,snd_seq_device
soundcore 9568 2 snd
intel_agp 21276 1
agpgart 31816 9 drm,sworks_agp,amd_k7_agp,ali_agp,sis_agp,ati_agp,nvidia_agp,via_agp,intel_agp
shpchp 40384 0
pci_hotplug 26164 1 shpchp
uhci_hcd 29328 0
i2c_piix4 8464 0
i2c_core 19984 1 i2c_piix4
aic7xxx 129588 2
scsi_transport_spi2 21120 1 aic7xxx
evdev 9088 3
root@1[~]# dmesg
[17179569.184000] Linux version 2.6.15-25-386 (root@mepis-party) (gcc version 4.0.3 (Ubuntu 4.0.3-1ubuntu5)) #1 PREEMPT Mon Jun 19 00:05:53 EDT 2006
[17179569.184000] BIOS-provided physical RAM map:
[17179569.184000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[17179569.184000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[17179569.184000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[17179569.184000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
[17179569.184000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[17179569.184000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[17179569.184000] BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
[17179569.184000] 0MB HIGHMEM available.
[17179569.184000] 512MB LOWMEM available.
[17179569.184000] On node 0 totalpages: 131072
[17179569.184000] DMA zone: 4096 pages, LIFO batch:0
[17179569.184000] DMA32 zone: 0 pages, LIFO batch:0
[17179569.184000] Normal zone: 126976 pages, LIFO batch:31
[17179569.184000] HighMem zone: 0 pages, LIFO batch:0
[17179569.184000] DMI 2.1 present.
[17179569.184000] ACPI: Unable to locate RSDP
[17179569.184000] Allocating PCI resources starting at 30000000 (gap: 20000000:dec00000)
[17179569.184000] Built 1 zonelists
[17179569.184000] Kernel command line: root=/dev/hda1 nomce quiet vga=791
[17179569.184000] Found and enabled local APIC!
[17179569.184000] mapped APIC to ffffd000 (fee00000)
[17179569.184000] Initializing CPU#0
[17179569.184000] PID hash table entries: 4096 (order: 12, 65536 bytes)
[ 0.000000] Detected 501.214 MHz processor.
[ 60.899779] Using tsc for high-res timesource
[ 60.899855] Console: colour dummy device 80x25
[ 60.902083] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 60.905103] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 60.969621] Memory: 514724k/524288k available (2633k kernel code, 9128k reserved, 929k data, 192k init, 0k highmem)
[ 60.969636] Checking if this processor honours the WP bit even in supervisor mode... Ok.
[ 61.047140] Calibrating delay using timer specific routine.. 1003.75 BogoMIPS (lpj=2007509)
[ 61.047257] Security Framework v1.0.0 initialized
[ 61.047275] SELinux: Disabled at boot.
[ 61.047286] Capability LSM initialized
[ 61.047338] Mount-cache hash table entries: 512
[ 61.047667] CPU: After generic identify, caps: 0383fbff 00000000 00000000 00000000 00000000 00000000 00000000
[ 61.047693] CPU: After vendor identify, caps: 0383fbff 00000000 00000000 00000000 00000000 00000000 00000000
[ 61.047724] CPU: L1 I cache: 16K, L1 D cache: 16K
[ 61.047735] CPU: L2 cache: 512K
[ 61.047744] CPU: After all inits, caps: 0383fbff 00000000 00000000 00000040 00000000 00000000 00000000
[ 61.047800] mtrr: v2.0 (20020519)
[ 61.047815] CPU: Intel Pentium III (Katmai) stepping 03
[ 61.047829] Enabling fast FPU save and restore... done.
[ 61.047838] Enabling unmasked SIMD FPU exception support... done.
[ 61.047852] Checking 'hlt' instruction... OK.
[ 61.171992] NET: Registered protocol family 16
[ 61.172404] PCI: PCI BIOS revision 2.10 entry at 0xfdb71, last bus=1
[ 61.172424] PCI: Using configuration type 1
[ 61.173711] ACPI: Subsystem revision 20051216
[ 61.173721] ACPI: Interpreter disabled.
[ 61.173732] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 61.173758] pnp: PnP ACPI: disabled
[ 61.173773] PnPBIOS: Scanning system for PnP BIOS support...
[ 61.173823] PnPBIOS: Found PnP BIOS installation structure at 0xc00f7540
[ 61.173837] PnPBIOS: PnP BIOS version 1.0, entry 0xf0000:0x68f4, dseg 0xf0000
[ 61.175656] PnPBIOS: Missing SMALL_TAG_ENDDEP tag
[ 61.175858] PnPBIOS: Missing SMALL_TAG_ENDDEP tag
[ 61.176025] PnPBIOS: Missing SMALL_TAG_ENDDEP tag
[ 61.176170] PnPBIOS: 14 nodes reported by PnP BIOS; 14 recorded by driver
[ 61.176582] SCSI subsystem initialized
[ 61.176751] usbcore: registered new driver usbfs
[ 61.176913] usbcore: registered new driver hub
[ 61.177111] PCI: Probing PCI hardware
[ 61.177126] PCI: Probing PCI hardware (bus 00)
[ 61.177614] PCI quirk: region 0400-043f claimed by PIIX4 ACPI
[ 61.177627] PCI quirk: region 0440-044f claimed by PIIX4 SMB
[ 61.177640] PIIX4 devres B PIO at 0290-0297
[ 61.178081] Boot video device is 0000:01:00.0
[ 61.184791] pnp: 00:08: ioport range 0x4d0-0x4d1 has been reserved
[ 61.184807] pnp: 00:08: ioport range 0xcf8-0xcff could not be reserved
[ 61.184824] pnp: 00:09: ioport range 0x290-0x297 has been reserved
[ 61.185698] PCI: Bridge: 0000:00:01.0
[ 61.185710] IO window: d000-dfff
[ 61.185723] MEM window: ff900000-ff9fffff
[ 61.185735] PREFETCH window: eea00000-f6afffff
[ 61.186072] Machine check exception polling timer started.
[ 61.189996] audit: initializing netlink socket (disabled)
[ 61.190028] audit(1156588920.388:1): initialized
[ 61.190411] VFS: Disk quotas dquot_6.5.1
[ 61.190478] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 61.190705] squashfs: version 3.0prerelease (2006/1/24) Phillip Lougher
[ 61.190817] NTFS driver 2.1.25 [Flags: R/W].
[ 61.190883] Registering unionfs 1.1.2
[ 61.191017] Initializing Cryptographic API
[ 61.191033] io scheduler noop registered
[ 61.191058] io scheduler anticipatory registered
[ 61.191083] io scheduler deadline registered
[ 61.191179] io scheduler cfq registered
[ 61.191193] Limiting direct PCI/PCI transfers.
[ 61.191738] vesafb: framebuffer at 0xf0000000, mapped to 0xe0880000, using 3072k, total 16384k
[ 61.191755] vesafb: mode is 1024x768x16, linelength=2048, pages=9
[ 61.191766] vesafb: protected mode interface info at c000:4c03
[ 61.191775] vesafb: scrolling: redraw
[ 61.191788] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
[ 61.191800] vesafb: Mode is VGA compatible
[ 61.267780] Console: switching to colour frame buffer device 128x48
[ 61.267800] fb0: VESA VGA frame buffer device
[ 61.268135] isapnp: Scanning for PnP cards...
[ 61.579553] isapnp: No Plug & Play device found
[ 61.655461] Non-volatile memory driver v1.2
[ 61.655876] PNP: PS/2 Controller [PNP0303] at 0x60,0x64 irq 1
[ 61.655889] PNP: PS/2 controller doesn't have AUX irq; using default 12
[ 61.658270] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 61.658503] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 61.658693] Serial: 8250/16550 driver $Revision: 1.90 $ 48 ports, IRQ sharing enabled
[ 61.658959] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 61.667886] 00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 61.670110] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
[ 61.671112] loop: loaded (max 8 devices)
[ 61.671441] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
[ 61.671456] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
[ 61.671634] PIIX4: IDE controller at PCI slot 0000:00:07.1
[ 61.671673] PIIX4: chipset revision 1
[ 61.671681] PIIX4: not 100% native mode: will probe irqs later
[ 61.671706] ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:DMA, hdb:pio
[ 61.671743] ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:pio
[ 61.671772] Probing IDE interface ide0...
[ 61.959174] hda: Maxtor 90845D4, ATA DISK drive
[ 62.631222] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[ 62.631403] Probing IDE interface ide1...
[ 63.367010] hdc: Pioneer DVD-ROM ATAPIModel DVD-115 0111, ATAPI CD/DVD-ROM drive
[ 64.151008] hdd: IOMEGA ZIP 100 ATAPI, ATAPI FLOPPY drive
[ 64.207287] ide1 at 0x170-0x177,0x376 on irq 15
[ 64.210722] hda: max request size: 128KiB
[ 64.217188] hda: 16514064 sectors (8455 MB) w/512KiB Cache, CHS=16383/16/63, UDMA(33)
[ 64.217209] hda: cache flushes not supported
[ 64.217380] hda: hda1 hda2 hda3
[ 64.245673] hdc: ATAPI DVD-ROM drive, 512kB Cache, UDMA(33)
[ 64.245695] Uniform CD-ROM driver Revision: 3.20
[ 64.247770] libata version 1.20 loaded.
[ 64.249458] Driver 'sd' needs updating - please use bus_type methods
[ 64.249747] ieee1394: Initialized config rom entry `ip1394'
[ 64.250026] ieee1394: raw1394: /dev/raw1394 device initialized
[ 64.250147] sbp2: $Rev: 1306 $ Ben Collins <bcollins@debian.org>
[ 64.250160] ieee1394: sbp2: Driver forced to serialize I/O (serialize_io=1)
[ 64.250170] ieee1394: sbp2: Try serialize_io=0 for better performance
[ 64.250280] usbmon: debugfs is not available
[ 64.250400] Initializing USB Mass Storage driver...
[ 64.250513] usbcore: registered new driver usb-storage
[ 64.250525] USB Mass Storage support registered.
[ 64.250739] mice: PS/2 mouse device common for all mice
[ 64.250976] NET: Registered protocol family 2
[ 64.286941] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 64.287806] TCP established hash table entries: 131072 (order: 7, 524288 bytes)
[ 64.289994] TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
[ 64.291447] TCP: Hash tables configured (established 131072 bind 65536)
[ 64.291460] TCP reno registered
[ 64.291812] ip_tables: (C) 2000-2002 Netfilter core team
[ 64.326779] TCP bic registered
[ 64.326827] NET: Registered protocol family 1
[ 64.326855] NET: Registered protocol family 8
[ 64.326864] NET: Registered protocol family 20
[ 64.326940] Using IPI Shortcut mode
[ 64.386175] EXT3-fs: mounted filesystem with ordered data mode.
[ 64.386229] VFS: Mounted root (ext3 filesystem) readonly.
[ 64.386425] Freeing unused kernel memory: 192k freed
[ 64.387320] kjournald starting. Commit interval 5 seconds
[ 65.757347] EXT3 FS on hda1, internal journal
[ 75.396693] Adding 787176k swap on /dev/hda2. Priority:1 extents:1 across:787176k
[ 77.804810] EXT3 FS on hda1, internal journal
[ 85.562664] piix4_smbus 0000:00:07.3: Found 0000:00:07.3 device
[ 85.653432] USB Universal Host Controller Interface driver v2.3
[ 85.653623] uhci_hcd 0000:00:07.2: UHCI Host Controller
[ 85.654329] uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
[ 85.654359] uhci_hcd 0000:00:07.2: irq 9, io base 0x0000ef80
[ 85.654827] hub 1-0:1.0: USB hub found
[ 85.654864] hub 1-0:1.0: 2 ports detected
[ 85.912531] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 85.990060] Linux agpgart interface v0.101 (c) Dave Jones
[ 85.996268] usb 1-2: new full speed USB device using uhci_hcd and address 2
[ 86.056688] agpgart: Detected an Intel 440BX Chipset.
[ 86.063445] agpgart: AGP aperture is 64M @ 0xf8000000
[ 86.132590] hub 1-2:1.0: USB hub found
[ 86.134451] hub 1-2:1.0: 4 ports detected
[ 86.445243] usb 1-2.1: new low speed USB device using uhci_hcd and address 3
[ 86.476890] ide-floppy driver 0.99.newide
[ 86.525098] hdd: No disk in drive
[ 86.573692] hdd: 98304kB, 96/64/32 CHS, 4096 kBps, 512 sector size, 2941 rpm
[ 86.785122] usb 1-2.2: new low speed USB device using uhci_hcd and address 4
[ 87.125008] usb 1-2.3: new low speed USB device using uhci_hcd and address 5
[ 87.298255] Real Time Clock Driver v1.12
[ 87.557958] 8139too Fast Ethernet driver 0.9.27
[ 87.560002] eth0: RealTek RTL8139 at 0xe0c64f00, 00:40:f4:eb:89:2b, IRQ 10
[ 87.560014] eth0: Identified 8139 chip type 'RTL-8100B/8139D'
[ 87.816808] hdd: No disk in drive
[ 88.701545] input: PC Speaker as /class/input/input0
[ 88.760728] hdd: No disk in drive
[ 89.009419] parport: PnPBIOS parport detected.
[ 89.009486] parport0: PC-style at 0x378, irq 7 [PCSPP]
[ 89.037976] Floppy drive(s): fd0 is 1.44M
[ 89.055173] FDC 0 is a National Semiconductor PC87306
[ 100.514554] scsi0 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 7.0
[ 100.514563] <Adaptec 2940 Ultra SCSI adapter>
[ 100.514569] aic7880: Single Channel A, SCSI Id=7, 16/253 SCBs
[ 100.514576]
[ 100.781781] Vendor: Quantum Model: XP32150 Rev: 576D
[ 100.781824] Type: Direct-Access ANSI SCSI revision: 02
[ 100.781857] scsi0:A:1:0: Tagged Queuing enabled. Depth 8
[ 100.781896] target0:0:1: Beginning Domain Validation
[ 100.785785] target0:0:1: FAST-10 SCSI 10.0 MB/s ST (100 ns, offset 15)
[ 100.788107] target0:0:1: Domain Validation skipping write tests
[ 100.788119] target0:0:1: Ending Domain Validation
[ 100.790680] SCSI device sda: 4199760 512-byte hdwr sectors (2150 MB)
[ 100.791769] SCSI device sda: drive cache: write back
[ 100.793020] SCSI device sda: 4199760 512-byte hdwr sectors (2150 MB)
[ 100.794111] SCSI device sda: drive cache: write back
[ 100.794124] sda: sda1 sda2
[ 100.808418] sd 0:0:1:0: Attached scsi disk sda
[ 100.809498] sd 0:0:1:0: Attached scsi generic sg0 type 0
[ 100.816693] Vendor: PLEXTOR Model: CD-R PX-W1210S Rev: 1.05
[ 100.816733] Type: CD-ROM ANSI SCSI revision: 02
[ 100.816779] target0:0:2: Beginning Domain Validation
[ 100.818859] target0:0:2: FAST-10 SCSI 10.0 MB/s ST (100 ns, offset 15)
[ 100.820215] target0:0:2: Domain Validation skipping write tests
[ 100.820227] target0:0:2: Ending Domain Validation
[ 100.826055] sr0: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
[ 100.826675] sr 0:0:2:0: Attached scsi CD-ROM sr0
[ 100.827825] sr 0:0:2:0: Attached scsi generic sg1 type 5

[ 101.893081] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 101.964992] lp0: using parport0 (interrupt-driven).
[ 101.981969] 8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004)
[ 103.991005] usbcore: registered new driver hiddev
[ 104.012605] input: USB-compliant keyboard as /class/input/input1
[ 104.012786] input: USB HID v1.10 Keyboard [USB-compliant keyboard] on usb-0000:00:07.2-2.1
[ 104.037536] input: USB-compliant keyboard as /class/input/input2
[ 104.037696] input: USB HID v1.10 Device [USB-compliant keyboard] on usb-0000:00:07.2-2.1
[ 104.378018] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
[ 105.504759] NET: Registered protocol family 17
[ 114.054785] drivers/usb/input/hid-core.c: timeout initializing reports
[ 114.054796]
[ 114.055408] input: Logitech Inc. iFeel MouseMan as /class/input/input3
[ 114.056252] input: USB HID v1.00 Mouse [Logitech Inc. iFeel MouseMan] on usb-0000:00:07.2-2.2
[ 114.077337] input: Justcom Technology USB KVM Switch as /class/input/input4
[ 114.077765] input: USB HID v1.10 Keyboard [Justcom Technology USB KVM Switch] on usb-0000:00:07.2-2.3
[ 114.096285] input: Justcom Technology USB KVM Switch as /class/input/input5
[ 114.097206] input: USB HID v1.10 Mouse [Justcom Technology USB KVM Switch] on usb-0000:00:07.2-2.3
[ 114.097240] usbcore: registered new driver usbhid
[ 114.097250] drivers/usb/input/hid-core.c: v2.6:USB HID core driver
[ 116.256789] md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
[ 116.256803] md: bitmap version 4.39
[ 117.064783] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel@redhat.com
[ 117.575562] cdrom: open failed.
[ 118.121270] hdd: No disk in drive
[ 119.103514] powernow: This module only works with AMD K7 CPUs
[ 119.465829] ndiswrapper version 1.8 loaded (preempt=yes,smp=no)
[ 119.609373] usbcore: registered new driver ndiswrapper
[ 121.904102] kjournald starting. Commit interval 5 seconds
[ 121.904933] EXT3 FS on hda3, internal journal
[ 121.904951] EXT3-fs: mounted filesystem with ordered data mode.
[ 123.336226] Netfilter messages via NETLINK v0.30.
[ 123.397257] ip_conntrack version 2.4 (4096 buckets, 32768 max) - 232 bytes per conntrack
[ 138.996056] ppdev: user-space parallel port driver
[ 151.935930] powernow: This module only works with AMD K7 CPUs
[ 152.631070] apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
[ 162.117607] [drm] Initialized drm 1.0.1 20051102
[ 162.143389] [drm] Initialized r128 2.5.0 20030725 on minor 0
[ 162.146448] agpgart: Found an AGP 1.0 compliant device at 0000:00:00.0.
[ 162.146483] agpgart: Putting AGP V2 device at 0000:00:00.0 into 1x mode
[ 162.146522] agpgart: Putting AGP V2 device at 0000:01:00.0 into 1x mode
[ 277.787680] sr 0:0:2:0: Device not ready.
[ 278.381045] (scsi0:A:2:0): No or incomplete CDB sent to device.
[ 278.381168] scsi0: Issued Channel A Bus Reset. 1 SCBs aborted
[ 278.643698] sr 0:0:2:0: SCSI error: return code = 0x10000
[ 278.730972] target0:0:2: FAST-10 SCSI 10.0 MB/s ST (100 ns, offset 15)
[ 709.126960] ABORTED IN=eth0 OUT= MAC=00:40:f4:eb:89:2b:02:0d:3a:6f:c3:91:08:00 SRC=66.102.7.104 DST=192.168.2.51 LEN=40 TOS=0x00 PREC=0x20 TTL=239 ID=4179 PROTO=TCP SPT=80 DPT=5677 SEQ=2818511404 ACK=2747308803 WINDOW=9300 RES=0x00 RST URGP=0
[ 1099.074764] ABORTED IN=eth0 OUT= MAC=00:40:f4:eb:89:2b:02:0d:3a:6f:c3:91:08:00 SRC=66.102.7.104 DST=192.168.2.51 LEN=40 TOS=0x00 PREC=0x20 TTL=239 ID=40835 PROTO=TCP SPT=80 DPT=5743 SEQ=1905185317 ACK=3173681561 WINDOW=9300 RES=0x00 RST URGP=0
[ 1175.025877] cdrom: open failed.
[ 1176.535423] cdrom: open failed.
root@1[~]#

My version of K3b is 0.12.14 Using KDE 3.5.3

I believe it was included in the MEPIS Distro.

The reason I had created the mount point in /media/ That is where the ISA CD was mounted and that was found by K3b.
 
Old 08-26-2006, 11:46 AM   #6
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
I have the feeling it is the K3B version you have. 0.12.17.1 is out. Download the source from K3B site and do a build and install of that.

Extract the source file
./configure
make
su to root
make install

Brian1
 
Old 08-26-2006, 06:39 PM   #7
KornFused
LQ Newbie
 
Registered: Jul 2006
Location: Dallas, Texas
Distribution: MEPIS 6.5.03
Posts: 26

Original Poster
Rep: Reputation: 15
I looked for it at K3b but didn't find it please forward URL.
 
Old 08-26-2006, 08:11 PM   #8
KornFused
LQ Newbie
 
Registered: Jul 2006
Location: Dallas, Texas
Distribution: MEPIS 6.5.03
Posts: 26

Original Poster
Rep: Reputation: 15
I looked at the K3b site, but could ot find the source for the version you referenced. I found it listed, but no download for Ubantu. Is there another program that you might recomend?
 
Old 08-27-2006, 11:57 AM   #9
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
They have it but I forgot it was not listed. Use the link
http://prdownloads.sourceforge.net/k...or=superb-east
and change to
http://prdownloads.sourceforge.net/k...or=superb-east

There is a scsi patch but have not found a link to it yet.
Here is the k3b-0.12-scsi.patch. Save to a file and apply before running make.
Code:
Skip scsi detection. Patch ported to 0.12 from FC development.

Mihai Maties <mihai@xcyb.org> - Fri Jun 17 11:52:18 EEST 2005

diff -Nur k3b-0.12.orig/libk3bdevice/k3bdevicemanager.cpp k3b-0.12/libk3bdevice/k3bdevicemanager.cpp
--- k3b-0.12.orig/libk3bdevice/k3bdevicemanager.cpp	2005-06-15 10:00:36.832920712 +0300
+++ k3b-0.12/libk3bdevice/k3bdevicemanager.cpp	2005-06-15 13:52:23.552777944 +0300
@@ -698,7 +698,8 @@
   }
 
   int bus = -1, target = -1, lun = -1;
-  bool scsi = determineBusIdLun( resolved, bus, target, lun );
+//  bool scsi = determineBusIdLun( resolved, bus, target, lun );
+  bool scsi = false;
   if(scsi) {
     if ( K3bDevice::Device* oldDev = findDevice(bus, target, lun) ) {
       kdDebug() << "(K3bDevice::DeviceManager) dev " << resolved  << " already found" << endl;
I would try the build without the patch first. I myself am a Redhat / Redhat clone distro user and build rpm packages so no help on Ubuntu packages.

Brian1

Last edited by Brian1; 08-27-2006 at 11:58 AM.
 
Old 08-29-2006, 06:41 PM   #10
KornFused
LQ Newbie
 
Registered: Jul 2006
Location: Dallas, Texas
Distribution: MEPIS 6.5.03
Posts: 26

Original Poster
Rep: Reputation: 15
Question Need for instructions

Brian,

I suffered a complete system crash and had to re-load MEPIS. Everything is back to where it was. I have never done a build and install before so I am in need of detailed instructions so if you can walk me through this it will be greatly appreciated.

I have downloaded K3b 12.17.1 and extracted it to /Home/Steve/Shared.

I have also removed the installed version of K3b from my computer. I don't know if this was necessary, but this way I know what I install will be the newer version.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Help mounting an NTFS drive on a SCSI card Norrin Linux - Newbie 2 08-26-2006 11:44 AM
Mounting FreeBSD SCSI drive on Linux problem CaptainKirk Linux - General 4 03-03-2006 04:52 AM
Mounting a SCSI drive to image it. jhill Linux - Hardware 1 07-27-2004 06:30 AM
Mounting/Accessing a Scsi tape drive Tenover Linux - Newbie 1 10-14-2003 10:35 PM
Mounting a Solaris SCSI drive on Linux machine Crac Linux - Newbie 4 05-29-2002 07:08 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 05:05 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration