WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: How to install Desktop GUI  (Read 29570 times)

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: How to install Desktop GUI
« Reply #15 on: March 23, 2017, 07:02:56 AM »
Adam, I don't know if you've figured this out yet but in your version of grub you should put additional commands after "quiet"

This is my menu.lst. Are you saying that I should put the bootcode text here?
Quote
tc@box:/$ cat /mnt/sda1/boot/grub/menu.lst
default 0
timeout 0
kernel /boot/vmlinuz quiet text
initrd /boot/core.gz
tc@box:/$

Also;
Quote
Btw, problem resolved. Found this link
http://forum.tinycorelinux.net/index.php/topic,18224.msg110684.html#msg110684

Here is the quick solution
Code: [Select]
tce-load -wi Xvesa.tcz Xlibs.tcz Xprogs.tcz aterm.tcz flwm_topside.tcz wbar.tcz
This assumes none of the extensions have been previously downloaded,  where tce-load will download and install each extension and their deps.

However, if one of the required extensions has been previously downloaded tce-load will report that *.tcz is already downloaded and will fail to install (the -i switch) and will not be loaded and available to startx

So, better to separate the commands
Code: [Select]
tce-load -w Xvesa.tcz Xlibs.tcz Xprogs.tcz aterm.tcz flwm_topside.tcz wbar.tcz
tce-load -i Xvesa.tcz Xlibs.tcz Xprogs.tcz aterm.tcz flwm_topside.tcz wbar.tcz
Then when you command "startx" all required components will be loaded

Just saying....



If the extensions are not normally loaded via "Onboot.lst" you might want to create a script to call when a desktop gui is desired, in which case use something like
Code: [Select]
list="Xvesa Xlibs Xprogs aterm flwm_topside wbar"
for i in $list; do
  tce-load -w $i
  tce-load -i $i
done
startx
« Last Edit: March 23, 2017, 07:34:15 AM by coreplayer2 »