Tiny Core Linux

Tiny Core Base => TCB Q&A Forum => Topic started by: vishrut_n_shah on February 13, 2011, 11:18:23 PM

Title: Access CD from TinyCoreLinux 3.1
Post by: vishrut_n_shah on February 13, 2011, 11:18:23 PM
Hello,

      Can we access CD from TinyCoreLinux 3.1 ??? How?

Please help.

Thanks in advance..  :)
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: curaga on February 14, 2011, 04:21:40 AM
http://ftp.nluug.nl/pub/metalab/distributions/tinycorelinux/3.x/archive/
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: floppy on February 14, 2011, 11:21:43 AM
     Can we access CD from TinyCoreLinux 3.1 ??? How?
Do you mean you want to read the the content of the CDrom device on your PC?
a) use the mount tool in TCL
b) or open a terminal and put the command "mount   /mnt/hdc" (see diverse FAQs etc. in this forum or read the installation advice in  http://www.tinycorelinux.com/install.html)
You can read now the content via the file manager.
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: vishrut_n_shah on February 17, 2011, 06:14:48 AM
I tried booting TinyCoreLinux 3.1 and in terminal i wrote following commad

mount /mnt/hdc

But it is showing that cannt mount because it is not listed in fstab ??

What can i do ??
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: Rich on February 17, 2011, 06:40:06 AM
Hi vishrut_n_shah
Type  cat /etc/fstab  in a terminal and look for a line that contains  iso9660. Find the
part that says  /mnt/xxxx  where xxxx is something like hdb1 or sdc1. Then type in
sudo mount /mnt/xxxx
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: tinypoodle on February 17, 2011, 06:57:41 AM
A CD with an iso9660 fs would normally not be partitioned, so there would not be any partition number as part of the device node name (e.g. hdb or sdc).

Edit: Upper is fully valid only for IDE/ATAPI drives, in case of SCSI (-emulated) drives there may be a number which refers to the drive, e.g. /dev/sr0, /dev/sr1
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: Rich on February 17, 2011, 07:07:19 AM
I stand corrected.
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: vishrut_n_shah on February 17, 2011, 07:20:56 AM
There is nothing like iso9660 ...  so what can i do to mount cd drive to access data from it???

Thanks in advance
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: tinypoodle on February 17, 2011, 07:57:50 AM
Try something like:
Code: [Select]
sudo mkdir /mnt/cdrom && sudo mount -t iso9660 /dev/XXX /mnt/cdromwhere XXX is the name of your device.
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: vishrut_n_shah on February 17, 2011, 08:54:40 AM
hi Tinypoodle,

It's also not working ... You can check out my screen shot that i have attached here so that you can get more idea...Sorry i can't upload here bcaz it's uploding folder is full.. you can check out following link


https://picasaweb.google.com/vishrutnshah/TinyCoreLinux#5574702374774869554 (https://picasaweb.google.com/vishrutnshah/TinyCoreLinux#5574702374774869554)

Please help me..

Thanks
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: gerald_clark on February 17, 2011, 09:00:22 AM
The current version is 3.5.
Please upgrade to the current version and try again.
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: tinypoodle on February 17, 2011, 09:05:12 AM
try
Code: [Select]
mount /mnt/sr0
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: tinypoodle on February 17, 2011, 09:26:16 AM
Hi vishrut_n_shah
Type  cat /etc/fstab  in a terminal and look for a line that contains  iso9660

Looks like in most systems an automatically generated filesystem entry in /etc/fstab for optical and floppy drives would be of type "auto" - as the filesystem on removable media could change at any moment   ;)
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: bmarkus on February 17, 2011, 09:27:11 AM
Is it a SATA drive? My IDE/ATAPI on TC 3.5 looks like this (/dev/hdd):

(http://tc.hasix.org/scrcap/cdfstab.jpg)

Please note that removable media is not automounted, you have to mount and umount manually. You can use eject command also.
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: tinypoodle on February 17, 2011, 09:33:37 AM
Is it a SATA drive? My IDE/ATAPI on TC 3.5 looks like this (/dev/hdd):

A USB drive would show as /dev/sr* here (with recent Linux systems).
Title: Re: Access CD from TinyCoreLinux 3.1
Post by: vishrut_n_shah on February 17, 2011, 10:23:22 AM
Thanks tinypoodle ,

mount   /mnt/sr* works and now i can access my data...

thanks a lot  :D