2012-04-19
SliTaz Razor-qt ISO
SliTaz Razor-qt ISO: http://is.gd/TazQT01
http://forum.slitaz.org/topic/your-qt-desktop-in-38mb
[..]
Ok packing KDE in 38Mb was a joke :-) But we seriously can provide a full QT desktop uneder 40Mb using the Razor-qt desktop environement and lightweight QT application. KDE is heavy but QT itself is not, I used KDE long time ago and with the slitaz-razorqt.iso I feel a bit like in clean KDE3 desktop!
By the way, the ISO is built with all latest packages from Tank including new Glibc 2.14.1 and Kernel 3.2.14 for those who want to give it a try before I sync the mirror.
WARNING: This a beta ISO, not yet complet but usable.
[..]
2012-04-09
Slitaz-4.0-RC3
Update:
- SliTaz 4.0 Release — 10 Apr 2012
SliTaz 4.0 RC3 is out — 18 Mar 2012 (34.5M)
http://mirror.slitaz.org/iso/cooking/slitaz-4.0-RC3.iso
SliTaz 4.0 Releases Notes (draft)
http://doc.slitaz.org/relnotes
Overview/ChangeLog
Welcome to SliTaz 4.0! Modern, secure, stable, fast and flexible the new SliTaz stable version is now out for Desktops and servers in production use.
More than 6500 commits in the wok
More than 1000 packages added to database
Boot in 10 seconds [or less?] on a very recent machine
Centralized configuration with the new control panel
New build tool which lets you create SliTaz packages in a minute
New rolling release ISO is built after each package cook
New installer
2012-04-07
Slitaz-arm-emergency - rcS
rcS
1.
# ls -l /etc/init.d
total 12
-rwxrwxr-x 1 0 0 986 Apr 4 2012 rcS
-rwxrwxr-x 1 0 0 599 Mar 27 2012 rcS~
-rwxrwxr-x 1 0 0 1200 Mar 27 2012 vchiq
2.
# cat /etc/init.d/rcS
#! /bin/sh
/bin/mount -a
/sbin/ifconfig lo 127.0.0.1
/sbin/ifconfig eth0 10.0.2.15 up
/sbin/route add default gw 10.0.2.2
/bin/hostname raspberrypi
echo /sbin/mdev >/proc/sys/kernel/hotplug
# /sbin/mdev -s
/sbin/syslogd # circular buffer - use logread to read
/sbin/klogd # log kernel messages - also available in dmesg
# load kernel modules listed in /etc/modules
if [ -r /etc/modules ]; then
while read mod; do
modprobe $mod
done < /etc/modules
fi
# create vchiq device
# [ -x /etc/init.d/vchiq ] && /etc/init.d/vchiq start
echo
echo Greetings from standalone Raspberry Pi
echo
if [ -f /proc/cmdline -a -x /usr/local/bin/rpitestmode.sh ]; then
if grep rpitestmode /proc/cmdline > /dev/null; then
# wait for USB ennumeration to finish - otherwise test will fail
sleep 3
/usr/local/bin/rpitestmode.sh
fi
fi
# use an artificial SysRq-g to interrupt
# echo Attempting to enter the debugger! ....
# echo g > /proc/sysrq-trigger
1.
# ls -l /etc/init.d
total 12
-rwxrwxr-x 1 0 0 986 Apr 4 2012 rcS
-rwxrwxr-x 1 0 0 599 Mar 27 2012 rcS~
-rwxrwxr-x 1 0 0 1200 Mar 27 2012 vchiq
2.
# cat /etc/init.d/rcS
#! /bin/sh
/bin/mount -a
/sbin/ifconfig lo 127.0.0.1
/sbin/ifconfig eth0 10.0.2.15 up
/sbin/route add default gw 10.0.2.2
/bin/hostname raspberrypi
echo /sbin/mdev >/proc/sys/kernel/hotplug
# /sbin/mdev -s
/sbin/syslogd # circular buffer - use logread to read
/sbin/klogd # log kernel messages - also available in dmesg
# load kernel modules listed in /etc/modules
if [ -r /etc/modules ]; then
while read mod; do
modprobe $mod
done < /etc/modules
fi
# create vchiq device
# [ -x /etc/init.d/vchiq ] && /etc/init.d/vchiq start
echo
echo Greetings from standalone Raspberry Pi
echo
if [ -f /proc/cmdline -a -x /usr/local/bin/rpitestmode.sh ]; then
if grep rpitestmode /proc/cmdline > /dev/null; then
# wait for USB ennumeration to finish - otherwise test will fail
sleep 3
/usr/local/bin/rpitestmode.sh
fi
fi
# use an artificial SysRq-g to interrupt
# echo Attempting to enter the debugger! ....
# echo g > /proc/sysrq-trigger










