In the past, I have tested the Nix package manager (viewtopic.php?p=91286)
It was a disappointment, too big and too much files installed.
This time, the test is with JuNest.
https://github.com/fsquillace/junest (Positive review : https://distrowatch.com/weekly.php?issue=20211213)
Here It is only about intallation and quick test with Dolphin.
To install, the indicated method uses the command git that is available in the devx sfs.
Alternative : install this pet https://www.swisstransfer.com/d/5beacd2 ... 8e9426a64f (618 Ko)
The github page says to add this line to /root/.bashrc:
Code: Select all
export PATH=~/.local/share/junest/bin:$PATH
Alternative : create symlink to the junest executables in /usr/bin:
Code: Select all
ln -s /root/.local/share/junest/bin/junest /usr/bin/junest
ln-s /root/.local/share/junest/bin/sudoj /usr/bin/sudoj
The command sudoj is for using sudo in the junest environment (Probably useless in Easy if you run as root)
Then you enter "junest setup" to install all the junest environment (a "filesystem" in the directory /root/.junest)
To enter in the junest environment type enter (and type exit in the environment to go out)
The environment is a minimal Arch Linux distribution.
It is necessary to know a little pacman
https://wiki.archlinux.org/title/Pacman
There is only one mirror (to download packages) listed in the installation
To choose other mirrors we can download a package :
Code: Select all
pacman -S pacman-mirrorlist
(see https://wiki.archlinux.org/title/Mirrors)
Then in the text file /root/.junest/etc/pacman.d/mirrorlist.pacnew unomment the mirror(s) you want to use and enter:
Code: Select all
cp /root/.junest/etc/pacman.d/mirrorlist.pacnew /root/.junest/etc/pacman.d/mirrorlist
After that, essential update of the packages database
Code: Select all
pacman -Syyu
installation of Dolphin:
Code: Select all
pacman -S dolphin
(More than 2.5 GB installed at this point)
The first try was not brilliant. Files appeared to be missing I needed to upadted glibc (I had not done the complete update) (Edit : typo fixed)
No font was installed (No result from the command "fc-list")
I was not satisfied by the result, dolphin was limited to the junest environment.
So new try : launch dolphin outside his jail. Continued in a next message.