How to Install Xorg on Salix Core
Installing Xorg
The easiest way to install Xorg on top of Salix Core is to install everything under the /x repository directory. To do that, first update your package database
slapt-get -uand then run:
slapt-get --install-set xThat will install every package that is in the /x directory and will give you a working Xorg. It would be a good idea to install some icon themes, or many apps won’t display properly:
slapt-get -i icon-naming-utils hicolor-icon-theme tango-icon-themeInstall a Window Manager
Most people would want something other than TWM, so you can install a minimal window manager, like icewm or fluxbox:
slapt-get -i icewmor
slapt-get -i fluxboxor similar for the one you want to install.
To make that window manager the default for your user, do
cp /etc/X11/xinit/xinit.icewm ~/.xinitrcfor icewm, or
cp /etc/X11/xinit/xinit.fluxbox ~/.xinitrcfor fluxbox, or similar for any other window manager, you get the point.
You can now test your favourite minimal window manager with:
startxGraphical login
If you want to have a graphical login screen, you have to install lightdm:
slapt-get -i lightdmPerhaps it’s a good idea to test lightdm before you set it as default. Start the graphical login manager with:
init 4If it works you can edit /etc/inittab and replace the following lines
# Default runlevel. (Do not set to 0 or 6)
id:3:initdefault:with
# Default runlevel. (Do not set to 0 or 6)
id:4:initdefault:Additional software
You can then add any graphical apps you might be needing with slapt-get.
You can of course remove any unnecessary Xorg packages that you may not need.