The snap-store installation instruction can be found here. After installation the snap store fonts cannot be properly displayed, at first thought you may think it is due to fonts not installed, but actually a simple workaround can solve this issue. sudo rm -f /var/cache/fontconfig/* No restart is required on Arch Linux, relaunch the snap store … Continue reading [snap-store]Snap store fonts cannot be displayed in Arch Linux
Tag: arch
[Linux]Arch Linux installation until xfce desktop
This is a personal note for me if I need to install Arch Linux on virtual box again. Arch Linux is unlike Linux Mint, it only comes with a shell after installation you will need to install the software you need by using pacman. Grand reference is to use the Arch Wiki. Live CD There … Continue reading [Linux]Arch Linux installation until xfce desktop
[Arch Linux]Could not boot to Arch and stuck in grub shell
I have made the grub configuration with grub-mkconfig -o /boot/grub/grub.cfg in the arch-chroot environment, after i generated the grub config I exited from the arch-chroot and unmount the /mnt then reboot, Arch could not be booted but instead my console was stucked in grub. this is because I have not downloaded the linux-firmware which includes … Continue reading [Arch Linux]Could not boot to Arch and stuck in grub shell
Arch Linux: Install yaourt
I wanted to install awesome window manager for Arch, however Arch repo does not include awesome anymore, I need to get from AUR. Installing package is easier with yaourt. I found that makepkg -s cannot resolve dependency if the dependency is not found in Arch mirrorlist. Install package-query package-query is one of the dependency, and … Continue reading Arch Linux: Install yaourt
Arch Linux: With KDE
The size of a fully installed KDE is 2.2G, it is very huge and I need to turn on 3-D acceleration on my vbox so that KDE desktop can show. The KDE4.8 has style while loading the system... but it is very slow comparing to LXDE and Gnome... KDE full installation pacman -S kde Add … Continue reading Arch Linux: With KDE
Arch Linux: Installing packages from AUR (Installing google chrome)
I have the choice of installing packages from Arch Linux User Community Repository. Here is the summary of what I have done: 1. Pick a package from AUR, then download the tar package. 2. The tar contains PKGBUILD, untar it and a build directory is created. 3. Go to the build directory, and run makepkg … Continue reading Arch Linux: Installing packages from AUR (Installing google chrome)
Arch Linux: LXDE installation and start up
Install lxde pacman -S lxde Copy menu.xml, rc.xml and autostart to my home directory Login with my own normal user account: mkdir -p ~/.config/openbox cp /etc/xdg/openbox/{menu.xml,rc.xml,autostart} ~/.config/openbox Install gamin pacman -S gamin Modify .xinitrc to start lxde with startx Use my own personal normal user account, open ~/.xinitrc I created my own .xinitrc script because … Continue reading Arch Linux: LXDE installation and start up
Arch Linux: Desktop environment (Start from X)
I find LXDE installation is the easiest among other desktop environments. LXDE includes openbox as its windows manager. Before I install any desktop environment I installed a few things and did a few works. Avoid upgrade Arch mindlessly unless it was really necessary...ArchLinux is not difficult to install but it is very easy to break, … Continue reading Arch Linux: Desktop environment (Start from X)
Arch Linux: Error occurs no packages were upgraded.
Contains two error: 1. /etc/mtab exits in filesystem 2. /etc/profile.d/locale.sh exits in filesystem General solution is to do pacman -Syu --force. It seemed previously failure to install anything useful in openbox were due to these two errors. After I did a force upgrade, problem resolved and I can install useful tools onto openbox.
Arch Linux: Install OpenBox
Install OpenBox Transfer menu.xml, rc.xml and autostart in ~/.config/openbox Do this with normal user. Use ls -lah ~/.config/openbox to verify: Install pyxdg from the repo: pacman -S pyxdg Install xinit pacman -S xorg-xinit xinit is X.Org initialization program. Install Xorg server Xorg server is needed to start X, xinit will not work if there … Continue reading Arch Linux: Install OpenBox