LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 03-28-2006, 04:08 AM   #1
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Rep: Reputation: 15
slackware 10.1 on thinkpad 560 - pcmcia trouble


Hi, first post here =)

Ive been trying to install slackware 10.1 on a thinkpad 560. The 560 has an external floppy drive that I can boot from, and a external CD drive connencted bi an IBM IDE PCMCIA card in the top slot.

I boot via floppy drive, using bare.i install.1 install.2 floppy disks in that order. I then run the pcmcia command, and use the pcmcia.dsk diskette. Everything goes fine, the slackware CD in the drive starts to spin. After it finishes spinning, I hit enter. I have setup the partitions, but the 560 cant find the CD drive to install from when i select 'target media'

Can anyone please help me find hte CD drive ?
 
Old 03-29-2006, 11:10 PM   #2
chrisortiz
Member
 
Registered: Nov 2005
Distribution: Slackware, and of course the super delux uber knoppix universal live recovery cd
Posts: 429

Rep: Reputation: 30
i had that problem once. I think i mounted the cd manually to get around it. btw slackware 10.2 has been out for a while and slack 11 will be out soon grab one of those. in your case i think the drive will be considered a scsi so scd0 you could link them with something like
"ln -s /dev/scd0 /dev/hdd1" and then choose that drive when it asks for what the source is.

Last edited by chrisortiz; 03-29-2006 at 11:13 PM.
 
Old 03-30-2006, 12:30 PM   #3
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Original Poster
Rep: Reputation: 15
does this then need to be mounted ? if so how do i add it to fstab ?
 
Old 03-30-2006, 02:59 PM   #4
chrisortiz
Member
 
Registered: Nov 2005
Distribution: Slackware, and of course the super delux uber knoppix universal live recovery cd
Posts: 429

Rep: Reputation: 30
you don't have to add it to fstab to be mounted, you could do "mount -tiso9660 /dev/scd0 /mnt/cdrom" (or /dev/hdd1, it won't matter if you linked them)

to add it to fstab add this line
Code:
/dev/scd0        /mnt/cdrom   auto        noauto,owner,ro,users  0   0
again it doesn't matter if you use /dev/hdd1 if they are linked.

I would try to make sure that the pcmcia cdrom is detected as /dev/scd0 before i edited fstab that way you don't have to go back an edit it again.

to do this look in /var/log/dmesg or /var/log/messages (slackware)
"cat /var/log/dmesg | grep scsi"

if it doesn't have a drive designation then its almost certianly scd0
 
Old 03-31-2006, 06:41 AM   #5
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Original Poster
Rep: Reputation: 15
it says

"mount point /mnt/cdrom does not exist"
 
Old 03-31-2006, 08:10 AM   #6
masonm
Senior Member
 
Registered: Mar 2003
Location: Following the white rabbit
Distribution: Slackware64 -current
Posts: 2,300

Rep: Reputation: 90
mkdir /mnt/cdrom
 
Old 03-31-2006, 08:51 AM   #7
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Original Poster
Rep: Reputation: 15
/dev/sdc0 is not avalid block device
 
Old 03-31-2006, 03:29 PM   #8
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
It is prob sda1 not sdc0 (ScsiDiskApartition1)
 
Old 04-01-2006, 01:31 AM   #9
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Original Poster
Rep: Reputation: 15
mount: special device /dev/sda1 does not exist
 
Old 04-02-2006, 01:14 AM   #10
chrisortiz
Member
 
Registered: Nov 2005
Distribution: Slackware, and of course the super delux uber knoppix universal live recovery cd
Posts: 429

Rep: Reputation: 30
when you plug in the pcmcia cdrom, what output is in /var/log/dmesg ?
 
Old 04-03-2006, 05:30 AM   #11
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Original Poster
Rep: Reputation: 15
Apr 3 10:38:01 (none) syslog.info -- MARK --
 
Old 04-03-2006, 02:02 PM   #12
chrisortiz
Member
 
Registered: Nov 2005
Distribution: Slackware, and of course the super delux uber knoppix universal live recovery cd
Posts: 429

Rep: Reputation: 30
looks like you need to compile a driver, did you install the kernel source along with fedora?
 
Old 04-04-2006, 11:00 AM   #13
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Original Poster
Rep: Reputation: 15
Not using fedora, from looking around the net I heard that slackware was the best for thinkpads.

I havent installed anything yet, its running from floppies booted into the RAM. I did use a pcmcia.dsk floppy and followed the instructions, but that doesnt seem to have done very much.

Im trying to install slackware 10.1 via the pcmcia CD drive.
 
Old 04-04-2006, 01:41 PM   #14
chrisortiz
Member
 
Registered: Nov 2005
Distribution: Slackware, and of course the super delux uber knoppix universal live recovery cd
Posts: 429

Rep: Reputation: 30
i should have re-read the first post. If the kernel finds the cdrom after you go through the floppy disks, there has to be a drive designation. try mounting /dev/hdc1 or /dev/hdb1.
 
Old 04-06-2006, 06:36 AM   #15
metalsam
Member
 
Registered: Mar 2006
Location: london
Distribution: fedora core 4
Posts: 56

Original Poster
Rep: Reputation: 15
neither of those are in fstab or mtab. I dont know how to edit those files so that i can mount stufff :S
 
  


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
Need help booting Thinkpad 560 w/pcmcia cdrom snatale1 Linux - Laptop and Netbook 0 02-04-2005 08:02 PM
2.6 Kernel IBM Thinkpad 560 problems tiger_baiter Linux - Laptop and Netbook 1 11-07-2004 05:04 PM
xfree 4.3.0 and Thinkpad 560 - need x config! miskinis Linux - Laptop and Netbook 8 11-05-2003 05:12 AM
installation on ThinkPad 560 superbondbond Slackware 8 01-03-2003 12:15 AM
HELP!! RH 7.1 Won't FTP/HTTP Install on Thinkpad 560 dcopley Linux - Software 4 08-02-2001 03:13 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 07:39 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