Author Topic: <SOLVE> Mylivecd No longer works  (Read 546 times)

Offline Newlife

  • Sr. Member
  • ****
  • Posts: 270
<SOLVE> Mylivecd No longer works
« on: May 25, 2011, 01:00:27 PM »
Well, I have changed nothing but keep updated....
BUT, my copy no longer will boot.  Just hangs telling me there is an error or loop something....
Never had this problem until the updates starting in Jan 2011.... what is wrong???

newlife
« Last Edit: June 12, 2011, 04:33:11 PM by Newlife »

Offline Linuzoid

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 1404
    • LinuzoidArt Studio
Re: Mylivecd No longer works
« Reply #1 on: May 25, 2011, 01:13:53 PM »
I had to install the draklive-install rpm, so Mylivecd would work, just today as a matter of fact. One of the updates removed that rpm and it's required for Mylivecd.

Peace
Be very, very kind to your neighbors, but don't take the fence down!

Offline AS

  • Hero Member
  • *****
  • Posts: 4111
  • Have a nice ... night!
Re: Mylivecd No longer works
« Reply #2 on: May 25, 2011, 01:18:05 PM »
Hello,

Well, I have changed nothing but keep updated....
BUT, my copy no longer will boot.  Just hangs telling me there is an error or loop something....
Never had this problem until the updates starting in Jan 2011.... what is wrong???

newlife

probably the default compression "xz" actually used from mylivecd, compared to the running kernel. You must specify --lzma option if you are using kernel older than 2.6.37.x

# mylivecd --help
Quote
  --lzma                          Use with kernels older than 2.6.37
   --gzip                          Use gzip compression for the image
   --xz                            Use xz compression for the image

also search the forum for additional info about different compression results.

AS

Offline YouCanToo

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 5331
  • Location: Lebanon, OR., USA
    • Spreading the word.......
Re: Mylivecd No longer works
« Reply #3 on: May 25, 2011, 01:54:55 PM »
I had to install the draklive-install rpm, so Mylivecd would work, just today as a matter of fact. One of the updates removed that rpm and it's required for Mylivecd.

Peace

Mylivecd will not even run if it is missing the draklive-install rpm. This does not sound like the issue he is having though.




Be sure to visit the NEW Knowledge Base


Linux is user-friendly- it's just picky who its friends are!

Online wedgetail

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 2435
  • Any Bugs in site?
Re: Mylivecd No longer works
« Reply #4 on: May 26, 2011, 03:50:22 AM »
Newlife
How are you trying to boot your re-mastered LiveCD?

What is the chance you kept a record of myliveCD process that generated the remaster?
32 bit: KDE (older) & various KDE-mini, ASUSTek P5P41D Rev X.0x, BIOS AMI0207 07/21/2009, "Pentium(R) Dual-Core CPU E5300 @ 2.60GHz", nVidia GeForce 9600 GT, 2x1GB Seagate Technology 1000528AS HDD
TV CompuPro VideoMate Vista E700 (not working in Linux), Acer X243HD LCD Screen

Offline Newlife

  • Sr. Member
  • ****
  • Posts: 270
Re: Mylivecd No longer works
« Reply #5 on: June 12, 2011, 04:31:10 PM »
Thanks All...

Seemed easiest to upgrade the kernel so that's what I did and now all is OK.

I wonder why the upgraded kernel is not included in upgrades, etc.???
n

Offline djohnston

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6227
  • I don't do Windows
Re: Mylivecd No longer works
« Reply #6 on: June 12, 2011, 04:37:45 PM »
I wonder why the upgraded kernel is not included in upgrades, etc.???

New kernels are not installed as part of the normal update process. You have to manually select the desired kernel in Synaptic, then mark it for installation. After installing a new kernel and rebooting, the last kernel installed becomes the default one.
Bare metal                           VBox
AMD Athlon 7750 Dual-Core    Single core
4GiB RAM                              1GiB RAM
nVidia GeForce FX 5200          64MB video
LXDE 32bit                            KDE 64bit

Registered Linux User #416378

Offline wayne1932

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 1083
Re: Mylivecd No longer works
« Reply #7 on: June 12, 2011, 04:47:54 PM »
I wonder why the upgraded kernel is not included in upgrades, etc.???

New kernels are not installed as part of the normal update process. You have to manually select the desired kernel in Synaptic, then mark it for installation. After installing a new kernel and rebooting, the last kernel installed becomes the default one.


I don't believe all of  this is true.   I chose to  upgrade my kernel yesterday to 2.6.38-8  and it was added as the final option on the grub menu but not the default.  The default stayed as it was.  Becoming default may have been true for a short while, but I think that the original behavior was to add it as another option, but not default.  
« Last Edit: June 12, 2011, 04:49:54 PM by wayne1932 »
If it ain't broke, DON'T fix it!  If ya cain't fix it, ya gotta stand it.  If ya cain't stand it..............Visit the forum and search.

Offline djohnston

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6227
  • I don't do Windows
Re: Mylivecd No longer works
« Reply #8 on: June 12, 2011, 04:57:59 PM »
I don't believe all of  this is true.   I chose to  upgrade my kernel yesterday to 2.6.38-8  and it was added as the final option on the grub menu but not the default.  The default stayed as it was.  Becoming default may have been true for a short while, but I think that the original behavior was to add it as another option, but not default.  

Yes, it is true. You can verify it for yourself. If you chose the default option in the GRUB boot menu, then open a terminal and enter uname -r. It will show the kernel version last installed.

The reason is that /boot/vmlinuz is a soft link to the default kernel. In my case, it would be vmlinuz-2.6.38.7-pclos1.a64. To find which one is default on your system, open a terminal and enter:

ls -l /boot/vmlinuz

You can see, in my case, which file is pointed to by the vmlinuz link.

lrwxrwxrwx 1 root root 27 Jun  4 09:54 /boot/vmlinuz -> vmlinuz-2.6.38.7-pclos1.a64

When you install a new kernel in Synaptic, the vmlinuz soft link is updated to point to the kernel just installed.
« Last Edit: June 12, 2011, 05:43:44 PM by djohnston »
Bare metal                           VBox
AMD Athlon 7750 Dual-Core    Single core
4GiB RAM                              1GiB RAM
nVidia GeForce FX 5200          64MB video
LXDE 32bit                            KDE 64bit

Registered Linux User #416378