1. we set up alpine repositories
localhost:~# vi /etc/apk/repositories
2. we use the following repositories
http://dl-3.alpinelinux.org/alpine/v2.4/main/
3. update the package
apk update
4. since i want x desktop, so i run
localhost:~# setup-xorg-base it will starts downloading & install around 40 packages // after packages installation finish localhost:~# Xorg -configure
5. i want to use pekwm, i think it is kinda awesome
localhost:~# apk add pekwm localhost:~# apk add xprop localhost:~# apk add lxterminal localhost:~# apk add gnome-icon-theme localhost:~# apk add gnome-themes // more to add, i will list out later // create this file, if you got no nano, apk add nano localhost:~# nano ~/.xinitrc#!/bin/sh xset b off exec pekwm
6. startx will load a blank black window with movable mouse pointer.
Post a Comment