2012-04-19

Slitaz-arm-20120418





slitaz-arm-20120418.img



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 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

2012-04-05

Slitaz-arm-emergency-2

# uname -a
Linux raspberrypi 3.1.9-slitaz #1 Wed Apr 4 15:55:17 UTC 2012 armv6l GNU/Linux

# du -sh /
6.5M /

# nslookup www.raspberrypi.org
Server: 10.0.2.3
Address 1: 10.0.2.3

Name: www.raspberrypi.org
Address 1: 93.93.128.176 www.raspberrypi.org
Address 2: 2a00:1098:0:80:1000:13:0:2

# busybox | head -1
BusyBox v1.18.4 (2012-04-04 05:58:32 UTC) multi-call binary.

# tazpkg | head -4
SliTaz packages manager - Version: 2.3

Usage: tazpkg [command] [package|dir|pattern|list|cat|--opt] [dir|--opt]
tazpkg shell

About SliTaz
http://www.slitaz.org/

SliTaz is an open source and free operating system providing a fully featured desktop or server in less than 35 MB. SliTaz is simple to use, fast and stable.

2012-04-04

Slitaz-arm-emergency


Greetings from standalone Raspberry Pi

1. slitaz_emergency.img is based on kernel_emergency.img
Additional files supplied by the foundation
http://elinux.org/RPi_Advanced_Setup#Additional_files_supplied_by_the_foundation

kernel_emergency.img : kernel with busybox rootfs. You can use this to repair the main linux partition using e2fsck if the linux partition gets corrupted.

2. download
# wget slitaz_emergency.img (5.2M)

3. boot
# qemu-system-arm -m 256 -M versatilepb -cpu arm1176 -kernel slitaz_emergency.img &
.