Salix Live 13.0 RC1

Shador
Posts: 1295
Joined: 11. Jun 2009, 14:04
Location: Bavaria

Re: Salix Live 13.0 RC1

Post by Shador »

JRD wrote:
linus72 wrote: Many will atttempt to use Unetbootin to install it to usb
Newbie will read the HOW_TO...
How about adding it to the root (or some other directory) of SalixLive and the SalixLive Desktop.
Image
User avatar
JRD
Salix Warrior
Posts: 950
Joined: 7. Jun 2009, 22:52
Location: Lyon, France

Re: Salix Live 13.0 RC1

Post by JRD »

Good idea. I just made it after making the ISO. And it still need to have other languages if possible. But yes, it sounds good to have it on the CD. I just need to get two images for css that are got from the forum.
Image
User avatar
gapan
Salix Wizard
Posts: 6238
Joined: 6. Jun 2009, 17:40

Re: Salix Live 13.0 RC1

Post by gapan »

The cups service is disabled by default, but it should be enabled. Also, the pcmcia service is enabled by default, but it should be disabled, it creates huge boot time delays for PCs without a pcmcia card.

This code is used in the standard installation, I suggest you do something similar for the live CD:

Code: Select all

if [ -r etc/rc.d/rc.alsa ]; then
	chmod +x etc/rc.d/rc.alsa
fi

if [ -r etc/rc.d/rc.atalk ]; then
	chmod -x etc/rc.d/rc.atalk
fi

if [ -r etc/rc.d/rc.bind ]; then
	chmod -x etc/rc.d/rc.bind
fi

if [ -r etc/rc.d/rc.bluetooth ]; then
	chmod +x etc/rc.d/rc.bluetooth
fi

if [ -r etc/rc.d/rc.cups ]; then
	chmod +x etc/rc.d/rc.cups
fi

if [ -r etc/rc.d/rc.dnsmasq ]; then
	chmod -x etc/rc.d/rc.dnsmasq
fi

if [ -r etc/rc.d/rc.fuse ]; then
	chmod +x etc/rc.d/rc.fuse
fi

if [ -r etc/rc.d/rc.hald ]; then
	chmod +x etc/rc.d/rc.hald
fi

if [ -r etc/rc.d/rc.hplip ]; then
	chmod -x etc/rc.d/rc.hplip
fi

if [ -r etc/rc.d/rc.httpd ]; then
	chmod -x etc/rc.d/rc.httpd
fi

if [ -r etc/rc.d/rc.inetd ]; then
	chmod -x etc/rc.d/rc.inetd
fi

if [ -r etc/rc.d/rc.ip_forward ]; then
	chmod -x etc/rc.d/rc.ip_forward
fi

if [ -r etc/rc.d/rc.lprng ]; then
	chmod -x etc/rc.d/rc.lprng
fi

if [ -r etc/rc.d/rc.messagebus ]; then
	chmod +x etc/rc.d/rc.messagebus
fi

if [ -r etc/rc.d/rc.mysqld ]; then
	chmod -x etc/rc.d/rc.mysqld
fi

if [ -r etc/rc.d/rc.ntpd ]; then
	chmod +x etc/rc.d/rc.ntpd
fi

if [ -r etc/rc.d/rc.pcmcia ]; then
	chmod -x etc/rc.d/rc.pcmcia
fi

if [ -r etc/rc.d/rc.rpc ]; then
	chmod -x etc/rc.d/rc.rpc
fi

if [ -r etc/rc.d/rc.samba ]; then
	chmod -x etc/rc.d/rc.samba
fi

if [ -r etc/rc.d/rc.saslauthd ]; then
	chmod -x etc/rc.d/rc.saslauthd
fi

if [ -r etc/rc.d/rc.sendmail ]; then
	chmod -x etc/rc.d/rc.sendmail
fi

if [ -r etc/rc.d/rc.serial ]; then
	chmod +x etc/rc.d/rc.serial
fi

if [ -r etc/rc.d/rc.snmpd ]; then
	chmod -x etc/rc.d/rc.snmpd
fi

if [ -r etc/rc.d/rc.syslog ]; then
	chmod +x etc/rc.d/rc.syslog
fi

if [ -r etc/rc.d/rc.sshd ]; then
	chmod +x etc/rc.d/rc.sshd
fi

if [ -r etc/rc.d/rc.wicd ]; then
	chmod +x etc/rc.d/rc.wicd
fi

if [ -r etc/rc.d/rc.wireless ]; then
	chmod +x etc/rc.d/rc.wireless
fi
Image
Image
User avatar
JRD
Salix Warrior
Posts: 950
Joined: 7. Jun 2009, 22:52
Location: Lyon, France

Re: Salix Live 13.0 RC1

Post by JRD »

Thank you. Maybe a bad default for the "07-live.lzm" module. I'm glad you found what wasn't good, and it also explains why some people said that the boot time was very very long and some not.
That is why RC are good ;-)
I'll check that for tomorrow...
Image
lori
Posts: 4
Joined: 9. Feb 2010, 06:31

Re: Salix Live 13.0 RC1

Post by lori »

are there any news about the final Live Version?
I tested on several PCs, also on x86_64, runs fine. Only some boot time problems as mentioned.

edit: ahhh... RC2 :)
linus72
Posts: 79
Joined: 1. Dec 2009, 00:12

Re: Salix Live 13.0 RC1

Post by linus72 »

hey was wonderin how the kernel-live source works?
do i just install reg 13 kernel source and run make in /usr/src or what do I do to compile salix live kernel?
User avatar
JRD
Salix Warrior
Posts: 950
Joined: 7. Jun 2009, 22:52
Location: Lyon, France

Re: Salix Live 13.0 RC1

Post by JRD »

All about recompiling kernelive is there : http://enialis.net/~jrd/salix/kernelive ... 6.smp-1cp/
Image
linus72
Posts: 79
Joined: 1. Dec 2009, 00:12

Re: Salix Live 13.0 RC1

Post by linus72 »

JRD

with the link you gave me; do I download and put all that in /usr/src and then where do i start??!

I wanna build live kernel for my 13 setup
so I can make livecd

What steps and how to do it Please?

Thanks
linus72
Posts: 79
Joined: 1. Dec 2009, 00:12

Re: Salix Live 13.0 RC1

Post by linus72 »

OK JRD, Gapan
I tried the kernel build at the link and although all went well it made a kernellive but there was no aufs
folder in /lib/modules/2.6.33-smp and so what happened?

I got no errors and still have the src too, the src in kernel-live/ has aufs folder
but it didnt carry over or I dont know??
How do I get it right?
ikke
Posts: 263
Joined: 5. Feb 2010, 22:47

Re: Salix Live 13.0 RC1

Post by ikke »

Any news? Or no longer interested? (Akuna back to Africa?)

Will there be an RC2 soon? That week of yours ...
Locked