You can see icons of aterm, panel, applications_browser, emelfm, Leafpad, Firefox and GIMP on Wbar.
I have downloaded the wallpaper and added Tinycore logo using GIMP.

Here is the wallpaper image without Wbar for you.

and here is the original image:

Tiny Core Linux is a very small (10 MB) minimal Linux Desktop. It is based on Linux 2.6 kernel, Busybox, Tiny X, Fltk, and Jwm. The core runs entirely in ram and boots very quickly.
It is not a complete desktop nor is all hardware completely supported. It represents only the core needed to boot into a very minimal X desktop typically with wired internet access.
The user has complete control over which applications and/or additional hardware to have supported, be it for a desktop, a nettop, an appliance, or server, selectable from our online repository.
I came to know about it on Ubuntuforums and downloaded it immediately. Generally I don't burn a CD for trying Linux distributions but mount the iso on a directory on /tmp and copy the contents to a spare partition. This time I did not copy even to the spare partition since it is 10 MB only and copied it to /tinycore on Ubuntu. I added following entry to /boot/grub/menu.lst:
title Tinycore
root (hd0,X)
kernel /tinycore/boot/bzImage
initrd /tinycore/boot/tinycore.gz
It booted within seconds to JWM Desktop using Xvesa. Since my BIOS is quirky the desktop was showing funny colours on Xvesa with 1024x768 resolution. I changed the resolution in .xsession file to 640x480x16 and the colours were normal.
Since the resolution was not acceptable I installed Xorg but it failed with fatal xserver errors. I posted on TinyCoreLinuxForums and got prompt replies. There is a bug in xserver 1.5.1 for intel driver and I had to manually add the modules agpgart, intel-agp and drm before startx command. I was also advised to add the modules to /opt/bootlocal.sh so that they are loaded before start of X server.
I installed Opera and posting this from Opera running on TinyCoreLinux, Xorg 7.4.
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105+inet"
Option "XkbLayout" "us"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "vesa"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
$ sudo chroot /media/disk
bash: /dev/null: Permission denied
# pacman -Syu
# modprobe usbserial vendor=0x19d2 product=0xfffd
[Dialer zte]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Modem Type = Analog Modem
Phone = #777
Username = 93XXXXXXXX
Password = 93XXXXXXXX
ISDN = 0
SetVolume = 0
FlowControl = Hardware (CRTSCTS)
Modem = /dev/ttyUSB0
Dial Command = ATDT
Baud = 460800
Stupid Mode = 1
PPP daemon dies (exit code =2).
(none) daemon.err pppd[6304]: Can't open options file /etc/ppp/peers/wvdial: No such file or directoryI copied the file /etc/ppp/wvdial into /etc/ppp/peers directory and finally, I could connect to internet.
(none) daemon.err pppd[6317]: Can't open options file /etc/ppp/peers/wvdial: No such file or directory
(none) daemon.err pppd[6352]: Can't open options file /etc/ppp/peers/wvdial: No such file or directory
title Marchlinux (on /dev/sda3)Before booting I created /etc/fstab and configured /etc/rc.conf file.
root (hd0,2)
kernel /boot/vmlinuz26 root=/dev/sda3 ro
initrd /boot/kernel26.img
title Marchlinux (on /dev/sda3) fallback
root (hd0,2)
kernel /boot/vmlinuz26 root=/dev/sda3 ro
initrd /boot/kernel26-fallback.img
$ sudo grubThere is Ubuntu Intrepid Ibex installed on (hd0,5) and I installed OzOS (Ubuntu variant using E17 Desktop) on (hd0,2) which overwrote the MBR. Now I want to format (hd0,2) but if I do it without setting up the Grub's MBR pointing to (hd0,5) my system would become un-bootable.
[ Minimal BASH-like line editing is supported. For
the first word, TAB lists possible command
completions. Anywhere else TAB lists the possible
completions of a device/filename. ]
grub> find /boot/grub/stage1
(hd0,2)
(hd0,5)
grub>
root (hd0,5)
grub> setup (hd0)
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd0)"... 16 sectors are embedded.
succeeded
Running "install /boot/grub/stage1 (hd0) (hd0)1+16 p (hd0,5)/boot/grub/stage2
/boot/grub/menu.lst"... succeeded
Done.
grub> quit
$
grub> find /boot/grub/stage1Now suppose I want to boot OzOS installed on (hd0,2) I can edit menu.lst on (hd0,5) and make an entry to boot it but I decided to use some other way which is not commonly used to boot Linux.
grub> root (hd0,X)
grub> setup (hd0)
$ sudo grubI have setup grub of (hd0,2) on the partition itself instead of MBR and edited menu.lst as follows:
grub> root (hd0,2)
grub> setup (hd0,2)
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd0,2)"... failed (this is not fatal)
Running "embed /boot/grub/e2fs_stage1_5 (hd0,2)"... failed (this is not fatal)
Running "install /boot/grub/stage1 (hd0,5) /boot/grub/stage2 p /boot/grub/menu
.lst "... succeeded
Done.
grub> chainloader +1
grub> boot
title OzOSWhen I select OzOS on grub installed on MBR it "chainloads" the bootloader installed on (hd0,2) which opens another boot menu (listing menu.lst of hda3).
root (hd0,2)
chainloader +1
title ArchLinux Installation SystemI use the USB port of my router but the installer, although, detecting it as eth1 did not work, therefore, I connected it through NIC. The installer downloaded and installed the base system. The Grub of Archlinux does not detect other operating systems on the hard disc, therefore, I did not install it to MBR.
root (hd0,1)
kernel /boot/vmlinuz26 lang=en locale=en_US.UTF-8 ramdisk_size=75%
initrd /boot/archlive.img
title Arch Linuxand rebooted again into Archlinux base install.
root (hd0,0)
kernel /boot/vmlinuz26 root=/dev/disk/by-uuid/72e737f9-5faf-4103-bfe2-84f9a01c4dab ro
initrd /boot/kernel26.img
# pacman -S hwd
# hwd -u
# hwd -x
$ free -m
Total used free shared buffer cache
Mem: 312 67 244 0 5 32
-/+buffers/cache 29 282
history | sed -e 's/ / /g' | cut -d " " -f3 | sort | uniq -c | sort -n | tail | sort -nr
After selling Ankur Apartment flat at Delhi we permanently shifted to Bhopal in our new 3 BHK Flat at Canal Kinship, Salaiya, Bhopal wef 28 ...