WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: how to install tinycore into a RAM 32mb PC?  (Read 34941 times)

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10962
Re: how to install tinycore into a RAM 32mb PC?
« Reply #30 on: August 01, 2011, 08:53:03 AM »
No, a non-linux fs is not going to work. Since extracting in the first place isn't a supported mode, I think you should get to know TC and linux better before trying it.
The only barriers that can stop you are the ones you create yourself.

Offline Sheleh

  • Newbie
  • *
  • Posts: 33
Re: how to install tinycore into a RAM 32mb PC?
« Reply #31 on: August 11, 2011, 08:29:04 PM »
1. I booted from tinycore.iso on a virtual machine.
2. I configured network
3. In the apps I downloaded cfdisk
4. I partitioned hda in cfdisc.
5. I Rebooted from tinycore.iso
6. I configured network
7. In the apps I downloaded syslinux
8. And I run the following commands:
Code: [Select]
mkfs.ext2 /dev/hda1
sudo mkdir /mnt/hda1
sudo mount /dev/hda1 /mnt/hda1
mkdir /mnt/hda1/boot/extlinux
extlinux --install /mnt/hda1/boot/extlinux
cat /usr/share/syslinux/mbr.bin > /dev/hda #
cp /tmp/tcloop/syslinux/usr/local/share/syslinux/*.c32 /mnt/hda1/boot/extlinux
cp /mnt/hdc/boot/bzImage /mnt/hda1/boot
cd /mnt/hda1
sudo zcat /mnt/hdc/boot/tinycore.gz | sudo cpio -i -H newc -d

in /mnt/hda1/boot/extlinux i created extlinux.conf

Code: [Select]
DEFAULT tinycore
LABEL tinycore
KERNEL /boot/bzImage
APPEND initrd=/boot/bzImage quiet root=/mnt/hda1
After booting the system displays the following error:
Quote
kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0.0)

Please help make the correct configuration file )
« Last Edit: August 13, 2011, 08:17:09 PM by Sheleh »

Offline maro

  • Hero Member
  • *****
  • Posts: 1228
Re: how to install tinycore into a RAM 32mb PC?
« Reply #32 on: August 11, 2011, 09:44:49 PM »
I'd say the APPEND initrd=/boot/bzImage quiet root=/mnt/hda1 line is wrong. For a "scatter installation" (which is what you appear to have created) you won't use an initrd (and even more so not one which is not even an initrd but the kernel file itself).

Therefore I'd suggest to change that line simply to: APPEND quiet root=/dev/hda1


EDIT: Silly me, I overlooked that 'mnt' was used in the device specifier. Thanks to curaga's reply #34 I've now corrected that oversight.
« Last Edit: August 12, 2011, 03:44:13 PM by maro »

Offline Sheleh

  • Newbie
  • *
  • Posts: 33
Re: how to install tinycore into a RAM 32mb PC?
« Reply #33 on: August 12, 2011, 09:49:13 AM »
I corrected extlinux.conf, but it changed nothing. Still displays the same error. Maybe someone has installed Tinycore in scatter mode on a virtual machine, and could upload the image of a hard disk or publish the contents of extlinux.conf? I would be very glad))))

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10962
Re: how to install tinycore into a RAM 32mb PC?
« Reply #34 on: August 12, 2011, 10:27:23 AM »
/mnt/hda1? How about /dev ;)
The only barriers that can stop you are the ones you create yourself.

Offline Sheleh

  • Newbie
  • *
  • Posts: 33
Re: how to install tinycore into a RAM 32mb PC?
« Reply #35 on: August 13, 2011, 09:24:24 PM »
Good idea! It's worked! Thanks to all !

But then came the next problem. When installing applications via the apps are installed and working, but only until you reboot. For example, I downloaded wine, rebooted, typed in the terminal
$ Wine, in response to "wine: not found"
While at the second attempt to install wine "tce-load -i /../wine.tcz" it displays "wine is already installed"
« Last Edit: August 14, 2011, 06:14:06 AM by Sheleh »

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10962
Re: how to install tinycore into a RAM 32mb PC?
« Reply #36 on: August 13, 2011, 11:59:18 PM »
Consequences of an unsupported installation. You should've used the -c flag (copy2fs).
The only barriers that can stop you are the ones you create yourself.

Offline Sheleh

  • Newbie
  • *
  • Posts: 33
Re: how to install tinycore into a RAM 32mb PC?
« Reply #37 on: August 14, 2011, 06:29:30 AM »
Where should I use this flag, and where can I read about this copy2fs?

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11220
Re: how to install tinycore into a RAM 32mb PC?
« Reply #38 on: August 14, 2011, 09:02:11 AM »
Hi Sheleh
Here are a few links that should clear things up.
http://forum.tinycorelinux.net/index.php?topic=10969.msg57565#msg57565
http://forum.tinycorelinux.net/index.php?topic=4893.msg25721#msg25721
http://forum.tinycorelinux.net/index.php?topic=9478.msg51750#msg51750

By the way, you could find the same information yourself using the search button at the top of the
page and entering  copy2fs

Offline Sheleh

  • Newbie
  • *
  • Posts: 33
Re: how to install tinycore into a RAM 32mb PC?
« Reply #39 on: August 19, 2011, 09:49:25 PM »
Rich, Thanks for the info.

Today I have a new problem. Tinycore does not run on real hardware (Toshiba Tecra 520CDT P166/32RAM).

Code: (bash) [Select]
request_module: runaway loop modprobe binfmt-0000
http://www.youtube.com/watch?v=oDUfng2MUYc

Offline maro

  • Hero Member
  • *****
  • Posts: 1228
Re: how to install tinycore into a RAM 32mb PC?
« Reply #40 on: August 19, 2011, 10:34:45 PM »
I'm afraid that video does not provide many clues (at least not to me).

I assume you've got the boot code 'quiet' in your boot loader configuration (e.g. 'syslinux.cfg'). I'd therefore suggest to remove that boot code from there and try again.

Offline Sheleh

  • Newbie
  • *
  • Posts: 33
Re: how to install tinycore into a RAM 32mb PC?
« Reply #41 on: August 19, 2011, 11:24:03 PM »
I uploaded the video again after corrects
http://www.youtube.com/watch?v=9Eetq38noig

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: how to install tinycore into a RAM 32mb PC?
« Reply #42 on: August 20, 2011, 07:13:55 AM »
Depending on the version of TC you are booting, and the video RAM window used by the bios,
32M of RAM may not be enough.

Offline Sheleh

  • Newbie
  • *
  • Posts: 33
Re: how to install tinycore into a RAM 32mb PC?
« Reply #43 on: August 20, 2011, 09:03:13 AM »
But this version is normally loaded on a 32mb-RAM a virtual machine

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: how to install tinycore into a RAM 32mb PC?
« Reply #44 on: August 20, 2011, 09:27:11 AM »
Actual FAQ says:

"An absolute minimum of RAM is 46mb"

So what? OK, onece you can try out of curiosity on a 32, 16, 8 Mbyte RAM system. But why to spend so much time for out of specs use?
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."