Tiny Core Linux

Tiny Core Base => CorePlus => Topic started by: kh335m on March 23, 2018, 07:58:29 AM

Title: Destop Empty
Post by: kh335m on March 23, 2018, 07:58:29 AM
Hi,
I customize tiny core current. And add following packages for Desktop

tce-load -wi Xvesa.tcz Xlibs.tcz Xprogs.tcz aterm.tcz flwm_topside.tcz wbar.tcz

and add this line in /etc/sysconfig/Xserver
   Xvesa

here are the step I did

cp tinymount/boot/core.gz tinylocal/
cd tinylocal
gunzip core.gz
cpio -i < core
rm core
cd ../tinycde
wget packages
cd ../tinylocal
for i in `ls -1 ../tinycde/*tcz` ; do unsquashfs -f -d . $i ; done
for i in `ls -1 ../tinymount/cde/optional/*tcz` ; do unsquashfs -f -d . $i ; done
find | cpio -o -H newc > ../core
cd ..
gzip core
advdef -z4 core.gz

When I start startx , I can see the desktop but there is no icon. Can anyone help me?
Title: Re: Destop Empty
Post by: polikuo on March 23, 2018, 08:59:43 AM
Hi
According to the tce.installed script.
Code: [Select]
tc@box:~$ cat /usr/local/tce.installed/wbar
#!/bin/sh
echo "echo wbar > /etc/sysconfig/icons" | sudo sh
wbar_setup.sh
You probably need /etc/sysconfig/icons in your remastered core.gz
Title: Re: Destop Empty
Post by: kh335m on March 23, 2018, 09:49:43 AM
Thanks. it's working :)
Title: Re: Destop Empty
Post by: kh335m on March 23, 2018, 05:03:38 PM
I click the Firefox, it’s not working. Do I need to do anything?
Title: Re: Destop Empty
Post by: polikuo on March 24, 2018, 03:24:33 AM
Code: [Select]
tc@box:~$ cat /usr/local/tce.installed/firefox
#!/bin/sh

# ln to binary on PATH
if [ ! -h /usr/local/bin/firefox ]; then
        ln -s /usr/local/firefox/firefox /usr/local/bin/firefox
fi

# ln lib64 to lib
if [ ! -e /lib64 ]; then
        ln -s /lib /lib64
fi

You'll need to add links manually.
Since you're running CorePlus, you can ignore the linking of /lib64.

Note that there's a remastering tool for remastering the ISO. (ezremaster.tcz)