WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: TinyCore on USB thumb won't mount .iso as loop device  (Read 5137 times)

Offline vincentyu1130

  • Newbie
  • *
  • Posts: 14
TinyCore on USB thumb won't mount .iso as loop device
« on: August 13, 2016, 09:37:23 AM »
I installed TinyCore 7.2 on usb thumb using the tc-install extension, tried to mount iso as follows:
mkdir /mnt/disk
mount -o loop name.iso /mnt/disk
Nothing happened and there is nothing in /mnt/disk.
mount --help says "-o loop" will be ignored and loop device autorecognized

Any ideas?
« Last Edit: August 13, 2016, 09:42:59 AM by vincentyu1130 »

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14817
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #1 on: August 13, 2016, 09:42:02 AM »
You could try:
Code: [Select]
$ sudo mount name.iso /mnt/disk

Offline vincentyu1130

  • Newbie
  • *
  • Posts: 14
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #2 on: August 13, 2016, 09:44:16 AM »
tried sudo mount, with or without -o loop, same result.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14817
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #3 on: August 13, 2016, 09:46:49 AM »
Did you get any error message? Are you sure that name.iso is a valid iso file?

Offline vincentyu1130

  • Newbie
  • *
  • Posts: 14
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #4 on: August 13, 2016, 09:51:39 AM »
Nothing from mount. I'm sure it's a valid iso 'cause I've tried it with my other live Linux cd and succeeded. (Of course name.iso is not the actual name, I'm just simplifying the question)

Does the fact that the iso file is on a ntfs partition ring a bell?
« Last Edit: August 13, 2016, 09:54:18 AM by vincentyu1130 »

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14817
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #5 on: August 13, 2016, 09:55:45 AM »
Maybe you could try this, just to be sure:
Code: [Select]
$ sudo mkdir /mnt/iso
$ sudo mount /mnt/sdb1/tmp/CorePure64-7.2.iso /mnt/iso
$ ls /mnt/iso/boot
corepure64.gz  isolinux/      vmlinuz64

Offline vincentyu1130

  • Newbie
  • *
  • Posts: 14
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #6 on: August 13, 2016, 10:12:01 AM »
There is no iso file on my sdb1 so I tried with the Tinycore-current.iso file I downloaded and burnt to cd(also on ntfs partition) and it worked!!
The one iso that failed me is Windows 8 Installation dvd image. It worked on my other live Linux cd which is MUCH larger and more fully loaded than TinyCore.
« Last Edit: August 13, 2016, 10:17:31 AM by vincentyu1130 »

Offline vincentyu1130

  • Newbie
  • *
  • Posts: 14
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #7 on: August 13, 2016, 09:43:12 PM »
I loaded util-linux to replace busybox and tried mount again, it gives me error message "unknown file system type 'udf'".
Is there an app I can load to support udf? I tried searching for udf in the app browser and couldn't find any.
My search on internet suggest udf support should be built into the kernel, right?
« Last Edit: August 13, 2016, 10:13:08 PM by vincentyu1130 »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11627
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #8 on: August 13, 2016, 11:09:09 PM »
Hi vincentyu1130
See if installing the  filesystems  extension helps.

Offline vincentyu1130

  • Newbie
  • *
  • Posts: 14
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #9 on: August 14, 2016, 12:29:40 AM »
filesystem extensions? I tried app browser but couldn't find anything with udf keyword.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11627
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #10 on: August 14, 2016, 12:46:16 AM »
Hi vincentyu1130
You're looking for an extension called  filesystems-4.2.7-tinycore.tcz.  The number in the extension name should match
the kernel you are running.

Offline vincentyu1130

  • Newbie
  • *
  • Posts: 14
Re: TinyCore on USB thumb won't mount .iso as loop device
« Reply #11 on: August 14, 2016, 01:15:09 AM »
Done as said. Works fine now!!
Thanks.