Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
15124ee5d9 | |||
5422a8a70e | |||
34c30203ef | |||
843e3d7441 | |||
ed35ada27d
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
to_package/
|
|
89
Makefile
Normal file
89
Makefile
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
VERSION=0.8
|
||||||
|
|
||||||
|
PKG = iso-profiles
|
||||||
|
TOOLS = artools
|
||||||
|
ifdef PREFIX
|
||||||
|
PREFIX = /usr/local
|
||||||
|
endif
|
||||||
|
SYSCONFDIR = /etc
|
||||||
|
PROFDIR = $(PREFIX)/share/$(TOOLS)/$(PKG)
|
||||||
|
|
||||||
|
BASEDIR = $(PROFDIR)/base
|
||||||
|
OVERLAYDIR = $(BASEDIR)/live-overlay$(SYSCONFDIR)
|
||||||
|
LXQTDIR = $(PROFDIR)/lxqt
|
||||||
|
LXDEDOR = $(PROFDIR)/lxde
|
||||||
|
|
||||||
|
DMODE = -dm0755
|
||||||
|
FMODE = -m0644
|
||||||
|
RM = rm -f
|
||||||
|
RMD = rm -fr --one-file-system
|
||||||
|
|
||||||
|
BASE = \
|
||||||
|
$(wildcard base/Packages-*) \
|
||||||
|
base/profile.conf
|
||||||
|
|
||||||
|
LIVE = \
|
||||||
|
base/live-overlay/etc/fstab \
|
||||||
|
base/live-overlay/etc/issue
|
||||||
|
|
||||||
|
LIVE_DEFAULT = \
|
||||||
|
$(wildcard base/live-overlay/etc/default/*)
|
||||||
|
|
||||||
|
LIVE_PAM = \
|
||||||
|
$(wildcard base/live-overlay/etc/pam.d/*)
|
||||||
|
|
||||||
|
LIVE_SUDOERS = \
|
||||||
|
$(wildcard base/live-overlay/etc/sudoers.d/*)
|
||||||
|
|
||||||
|
LXQT = \
|
||||||
|
$(wildcard lxqt/Packages-*) \
|
||||||
|
lxqt/profile.conf
|
||||||
|
|
||||||
|
LXQT_DM = \
|
||||||
|
lxqt/desktop-overlay/etc/sddm.conf
|
||||||
|
|
||||||
|
install-base:
|
||||||
|
install $(DMODE) $(DESTDIR)$(BASEDIR)
|
||||||
|
install $(FMODE) $(BASE) $(DESTDIR)$(BASEDIR)
|
||||||
|
|
||||||
|
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)
|
||||||
|
install $(FMODE) $(LIVE) $(DESTDIR)$(OVERLAYDIR)
|
||||||
|
|
||||||
|
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/default
|
||||||
|
install $(FMODE) $(LIVE_DEFAULT) $(DESTDIR)$(OVERLAYDIR)/default
|
||||||
|
|
||||||
|
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||||
|
install $(FMODE) $(LIVE_PAM) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||||
|
|
||||||
|
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||||
|
install $(FMODE) $(LIVE_SUDOERS) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||||
|
|
||||||
|
install-lxqt:
|
||||||
|
install $(DMODE) $(DESTDIR)$(LXQTDIR)
|
||||||
|
install $(FMODE) $(LXQT) $(DESTDIR)$(LXQTDIR)
|
||||||
|
install $(DMODE) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||||
|
install $(FMODE) $(LXQT_DM) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||||
|
|
||||||
|
uninstall-base:
|
||||||
|
for f in $(notdir $(BASE)); do $(RM) $(DESTDIR)$(BASEDIR)/$$f; done
|
||||||
|
for f in $(notdir $(LIVE)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/$$f; done
|
||||||
|
for f in $(notdir $(LIVE_DEFAULT)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/default/$$f; done
|
||||||
|
for f in $(notdir $(LIVE_PAM)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/pam.d/$$f; done
|
||||||
|
for f in $(notdir $(LIVE_SUDOERS)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/sudoers.d/$$f; done
|
||||||
|
$(RMD) $(DESTDIR)$(BASEDIR)
|
||||||
|
|
||||||
|
uninstall-lxqt:
|
||||||
|
for f in $(notdir $(LXQT)); do $(RM) $(DESTDIR)$(LXQTDIR)/$$f; done
|
||||||
|
for f in $(notdir $(LXQT_DM)); do $(RM) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)/$$f; done
|
||||||
|
$(RMD) $(DESTDIR)$(LXQTDIR)
|
||||||
|
|
||||||
|
install: install-lxqt install-base
|
||||||
|
|
||||||
|
uninstall: uninstall-lxqt uninstall-base
|
||||||
|
|
||||||
|
dist:
|
||||||
|
git archive --format=tar --prefix=$(PKG)-$(VERSION)/ $(VERSION) | gzip -9 > $(PKG)-$(VERSION).tar.gz
|
||||||
|
gpg --detach-sign --use-agent $(PKG)-$(VERSION).tar.gz
|
||||||
|
|
||||||
|
.PHONY: install uninstall dist install-lxqt install-base uninstall-lxqt uninstall-base
|
||||||
|
|
@@ -1,27 +0,0 @@
|
|||||||
# Notes
|
|
||||||
|
|
||||||
1. buildiso uses /usr/share/artools/pacman-default.conf for all pacman operations, and copies it into the ISO.
|
|
||||||
2. ~/artools-workspace/iso-profiles overrides the system default ones
|
|
||||||
3. livefs overlay isn't copied over to installed system
|
|
||||||
4. having more than one kernel specified in base/Packages-Root fails (June 2019)
|
|
||||||
5. buildiso seems to use both /etc/pacman.conf and /usr/share/artools/pacman-default.conf
|
|
||||||
|
|
||||||
|
|
||||||
TODO
|
|
||||||
1. DONE: /etc/default/grub append net.ifnames=0
|
|
||||||
2. DONE: metalog-openrc instead of syslog-ng-openrc in ~/artools-workspace/iso-profiles/base/Packages-Root, because the latter seems to hang on some systems
|
|
||||||
3. DONE: connman instead of nm in base/Packages-Live, because it's lighter and just as efficient
|
|
||||||
4. DONE: gparted instead of partitionmanager
|
|
||||||
5. DONE: Remove start menu arrow in MATE (~/.config/gtk-3.0/gtk.css)
|
|
||||||
6. DONE: remove mate-backgrounds and add artix wallpapers instead
|
|
||||||
7. DONE: Encrypted filesystem requires /crypto_keyfile.bin in mkinitcpio.conf/FILES and cryptkey=rootfs:/crypto_keyfile.bin in default/grub/GRUB_CMDLINE_LINUX, or kernel updates break
|
|
||||||
8. DONE: For QT ISO: QT_QPA_PLATFORMTHEME must be unset, otherwise icons are invisible in Plasma desktop (nuoveXT2 set gets picked up by the gtk2 settings) and there are dark text on dark background issues in systemsettings5 and some widget settings. QT_STYLE_OVERRIDE=gtk perhaps should be set (e.g. in /etc/environment)
|
|
||||||
9. DONE: GTK2 toolbar is a png, needs some darkening.
|
|
||||||
|
|
||||||
More TODOs, Nov 2019
|
|
||||||
1. DONE: Virtualbox is ugly with every QT_STYLE_OVERRIDE setting except kvantum-dark; use an alias in /etc/bash/ until fixed upstream
|
|
||||||
2. DONE: GTK ISO: Use gschema overrides instead of the binary dconf blob <-- almost done, MATE doesn't honour some overrides and we use /etc/dconf instead
|
|
||||||
3. DONE: Create a basic branding package to keep the profiles lighter.
|
|
||||||
|
|
||||||
More TODOs, Jan 2020
|
|
||||||
3. Create an extended/community branding package.
|
|
@@ -1,34 +0,0 @@
|
|||||||
# iso-profiles
|
|
||||||
The Artix ISO profiles
|
|
||||||
|
|
||||||
The *community* GTK and Qt profiles (MATE-LXDE-Cinnamon and KDE/Plasma-LXQt) are mostly symlinks to community. Only a few files/directories differ that accomodate settings specific to the flavour. Those files/directories are ***not*** symlinks.
|
|
||||||
|
|
||||||
Compared to *base/minimal* profiles, the community profiles differ in:
|
|
||||||
1. /etc/skel is a lot more populous, as it contains DE and application settings <-- WIP, to be replaced by a package
|
|
||||||
2. A few scripts in /etc/local.d/ get executed at first boot:
|
|
||||||
* theme-root creates in /root/.config some symlinks to /etc/skel/.config, for allowing sudo apps follow the overall theme, and gets deleted after execution
|
|
||||||
* artix-icons converts all start-here.png icons in /usr/share/icons to the Artix logo
|
|
||||||
* 0-remove-openbox-sessions deletes openbox entries in /usr/share/xsessions; openbox sessions are unconfigured and can even hang if chosen. Also gets deleted after execution
|
|
||||||
* change-machine-id replaces machine-id in /etc and /var/lib/dbus at every boot
|
|
||||||
* mkinitcpio detects whether the installation is encrypted or not and modifies /etc/default/grub and /etc/mkinitcpio.conf accordingly
|
|
||||||
3. The default evowise mirror in mirrorlist-arch is commented out for being very slow
|
|
||||||
4. rc.local enables the magic sysrq key and replaces the boring /etc/issue with a neofetch dump
|
|
||||||
5. A nice DIR_COLORS is present in /etc.
|
|
||||||
6. /etc/environment sets QT_QPA_PLATFORMTHEME=gtk2 and QT_STYLE_OVERRIDE=gtk in the GTK ISO. The other way round in Qt.
|
|
||||||
7. /etc/vconsole.conf is symlinked to conf.d/consolefont, which is a merge of both. This allows both OpenRC to set the console font and mkinitcpio run the hook early at boot.
|
|
||||||
8. /etc/xdg/kcm-about-distrorc is branded for Artix (<-- Not needed anymore, Plasma uses lsb-release or something). There are a few more config files there, stolen from other distros.
|
|
||||||
9. The mkinitcpio.conf in *desktop* profile is preconfigured for rootfs encryption, otherwise system becomes unbootable at first kernel upgrade. If encryption isn't enabled, the script in local.d removes the setting.
|
|
||||||
10. There's a custom local.bashrc in bashrc/bashrc.d, with a better PS1 and a few useful aliases and customizations. <-- Have been split into 2 packages (2nd is WIP for community)
|
|
||||||
11. default/grub is preconfigured with the artix-grub-theme and rootfs encryption; see no.9.
|
|
||||||
12. elogind/logind.conf sets KillUserProcesses=no, which seems to be forgotten to incredibly stupid default 'yes'
|
|
||||||
13. In profile.d/ libreoffice is themed with SAL_USE_VCLPLUGIN=gtk
|
|
||||||
14. rc.conf sets *rc_parallel* and *rc_crashed_start* to YES
|
|
||||||
15. /etc/hosts for live sets *artix* to loopback, some programs hung for a while resolving it
|
|
||||||
16. The branding icons in /usr/share/icons/matefaenzadark are set to Artix
|
|
||||||
17. 60-ioschedulers.rules in udev/rules.d sets I/O scheduler according to disk type (ssd/rotational) <-- part of our udev now
|
|
||||||
18. /root/.config contains settings for Midnight Commander
|
|
||||||
19. /usr/lib/firefox/distribution/distribution.ini is branded for Artix
|
|
||||||
20. A little tested and possibly incomplete theme for LXDM lies in /usr/share
|
|
||||||
21. A tweaked SDDM theme appears in /usr/share/sddm
|
|
||||||
|
|
||||||
|
|
14
README.md
14
README.md
@@ -1,14 +1,2 @@
|
|||||||
# iso-profiles
|
# iso-profiles
|
||||||
|
The artix iso profiles
|
||||||
The Artix ISO profiles.
|
|
||||||
|
|
||||||
|
|
||||||
The profiles are designated base, minimal and community.
|
|
||||||
|
|
||||||
Base only offers a bare minimum system, installable from the CLI. For advanced users.
|
|
||||||
|
|
||||||
Minimal profiles (come with a basic DE (LXDE, LXQt, Cinnamon and MATE), slightly preconfigured. The graphics installer of choice is Calamares. For knowledgeable users.
|
|
||||||
|
|
||||||
The community profiles come in two flavours, GTK (with MATE and LXDE), and QT (with Plasma and LXQt). They are fully preconfigured and contain many applications for everyday use. Ideal for average or novice users or people that just want a well-endowed live ISO for setting up an out-of-the-box working OS.
|
|
||||||
|
|
||||||
Common settings among all minimal profiles are stored in ''common''.
|
|
||||||
|
28
TODO
28
TODO
@@ -1,28 +0,0 @@
|
|||||||
TO-{DO,FIX} LIST
|
|
||||||
|
|
||||||
DONE = Symlinks in profiles are dereferenced, move 80-net-link-something.rules into package
|
|
||||||
= Move some stuff out of the profiles into packages
|
|
||||||
DONE |_ Desktop settings -> artix-$DE-presets
|
|
||||||
DONE |_ Application settings -> app-presets
|
|
||||||
|
|
||||||
FIXED /etc/rc.local from artix-branding-base overwrites /etc/issue with artix:artix info
|
|
||||||
|
|
||||||
DONE Change prompt from $ to % in community profiles
|
|
||||||
Openbox not deleted from xsessions <-- see next
|
|
||||||
DONE Make rc.local execute stuff in /etc/local.d under runit/s6:
|
|
||||||
ls -l /sbin/init | sed 's/.*->\ \(.*\)-init/\1/'
|
|
||||||
DONE mimeapps.list must be separate for each profile
|
|
||||||
|
|
||||||
DONE Networkmanager in LXQt
|
|
||||||
DONE GRUB remove 1280x1024
|
|
||||||
Autologin-session doesn't work
|
|
||||||
|
|
||||||
2020-03-08
|
|
||||||
==========
|
|
||||||
|
|
||||||
DONE Use firefox-dark-reader instead of local/skel profile's
|
|
||||||
DONE Also consider a few more addons from the group
|
|
||||||
TODO Test firefox before releasing
|
|
||||||
|
|
||||||
2020-04-18
|
|
||||||
DONE XFCE4 profile
|
|
15
base/Packages-Live
Normal file
15
base/Packages-Live
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
mkinitcpio-nfs-utils
|
||||||
|
squashfs-tools
|
||||||
|
nbd
|
||||||
|
|
||||||
|
>openrc artix-live-openrc
|
||||||
|
>runit artix-live-runit
|
||||||
|
artix-live-portable-efi
|
||||||
|
|
||||||
|
>openrc networkmanager-openrc
|
||||||
|
>openrc ntp-openrc
|
||||||
|
>openrc bluez-openrc
|
||||||
|
|
||||||
|
>runit networkmanager-runit
|
||||||
|
>runit ntp-runit
|
||||||
|
>runit bluez-runit
|
@@ -1,10 +1,9 @@
|
|||||||
base
|
|
||||||
@openrc elogind-openrc
|
|
||||||
@runit elogind-runit
|
|
||||||
@s6 elogind-s6
|
|
||||||
acpi
|
acpi
|
||||||
b43-fwcutter
|
b43-fwcutter
|
||||||
|
bash
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
|
bzip2
|
||||||
|
coreutils
|
||||||
crda
|
crda
|
||||||
dhclient
|
dhclient
|
||||||
diffutils
|
diffutils
|
||||||
@@ -15,94 +14,77 @@ e2fsprogs
|
|||||||
ecryptfs-utils
|
ecryptfs-utils
|
||||||
exfat-utils
|
exfat-utils
|
||||||
f2fs-tools
|
f2fs-tools
|
||||||
|
file
|
||||||
|
filesystem
|
||||||
|
findutils
|
||||||
|
gawk
|
||||||
|
gcc-libs
|
||||||
|
gettext
|
||||||
|
glibc
|
||||||
|
grep
|
||||||
grub
|
grub
|
||||||
|
gzip
|
||||||
inetutils
|
inetutils
|
||||||
|
iproute2
|
||||||
iptables
|
iptables
|
||||||
|
iputils
|
||||||
ipw2100-fw
|
ipw2100-fw
|
||||||
ipw2200-fw
|
ipw2200-fw
|
||||||
jfsutils
|
jfsutils
|
||||||
linux
|
linux
|
||||||
linux-headers
|
less
|
||||||
|
licenses
|
||||||
linux-firmware
|
linux-firmware
|
||||||
logrotate
|
logrotate
|
||||||
lsb-release
|
lsb-release
|
||||||
man-db
|
man-db
|
||||||
man-pages
|
man-pages
|
||||||
memtest86+
|
memtest86+
|
||||||
mkinitcpio
|
|
||||||
mkinitcpio-openswap
|
mkinitcpio-openswap
|
||||||
nano
|
nano
|
||||||
net-tools
|
net-tools
|
||||||
ntfs-3g
|
ntfs-3g
|
||||||
@openrc acpid-openrc
|
>openrc acpid-openrc
|
||||||
@openrc cronie-openrc
|
>openrc cronie-openrc
|
||||||
@openrc cryptsetup-openrc
|
>openrc cryptsetup-openrc
|
||||||
@openrc dhcpcd-openrc
|
>openrc dhcpcd-openrc
|
||||||
@openrc haveged-openrc
|
>openrc haveged-openrc
|
||||||
@openrc lvm2-openrc
|
>openrc lvm2-openrc
|
||||||
@openrc mdadm-openrc
|
>openrc mdadm-openrc
|
||||||
@openrc nfs-utils-openrc
|
>openrc nfs-utils-openrc
|
||||||
@openrc rsync-openrc
|
>openrc rsync-openrc
|
||||||
@openrc openssh-openrc
|
>openrc openssh-openrc
|
||||||
@openrc wpa_supplicant-openrc
|
>openrc wpa_supplicant-openrc
|
||||||
@openrc metalog-openrc
|
>openrc syslog-ng-openrc
|
||||||
@runit acpid-runit
|
>runit acpid-runit
|
||||||
@runit cronie-runit
|
>runit cronie-runit
|
||||||
@runit cryptsetup-runit
|
>runit dhcpcd-runit
|
||||||
@runit dhcpcd-runit
|
>runit haveged-runit
|
||||||
@runit haveged-runit
|
>runit lvm2-runit
|
||||||
@runit lvm2-runit
|
>runit mdadm-runit
|
||||||
@runit mdadm-runit
|
>runit nfs-utils-runit
|
||||||
@runit nfs-utils-runit
|
>runit rsync-runit
|
||||||
@runit rsync-runit
|
>runit openssh-runit
|
||||||
@runit openssh-runit
|
>runit wpa_supplicant-runit
|
||||||
@runit wpa_supplicant-runit
|
>runit syslog-ng-runit
|
||||||
@runit metalog-runit
|
artix-sysvcompat
|
||||||
@s6 acpid-s6
|
|
||||||
@s6 cronie-s6
|
|
||||||
@s6 cryptsetup-s6
|
|
||||||
@s6 dhcpcd-s6
|
|
||||||
@s6 haveged-s6
|
|
||||||
@s6 lvm2-s6
|
|
||||||
@s6 mdadm-s6
|
|
||||||
@s6 nfs-utils-s6
|
|
||||||
@s6 rsync-s6
|
|
||||||
@s6 openssh-s6
|
|
||||||
@s6 wpa_supplicant-s6
|
|
||||||
@s6 metalog-s6
|
|
||||||
os-prober
|
os-prober
|
||||||
|
pacman
|
||||||
|
pciutils
|
||||||
|
perl
|
||||||
|
procps-ng
|
||||||
|
psmisc
|
||||||
reiserfsprogs
|
reiserfsprogs
|
||||||
|
sed
|
||||||
|
shadow
|
||||||
s-nail
|
s-nail
|
||||||
sudo
|
sudo
|
||||||
sysfsutils
|
sysfsutils
|
||||||
|
tar
|
||||||
texinfo
|
texinfo
|
||||||
usbutils
|
usbutils
|
||||||
|
util-linux
|
||||||
which
|
which
|
||||||
efibootmgr
|
efibootmgr
|
||||||
xfsprogs
|
xfsprogs
|
||||||
zsh
|
zsh
|
||||||
|
|
||||||
mkinitcpio-nfs-utils
|
|
||||||
squashfs-tools
|
|
||||||
nbd
|
|
||||||
|
|
||||||
@openrc artix-live-openrc
|
|
||||||
@runit artix-live-runit
|
|
||||||
@s6 artix-live-s6
|
|
||||||
|
|
||||||
@openrc connman-openrc
|
|
||||||
@openrc ntp-openrc
|
|
||||||
@openrc bluez-openrc
|
|
||||||
@runit connman-runit
|
|
||||||
@runit ntp-runit
|
|
||||||
@runit bluez-runit
|
|
||||||
@s6 connman-s6
|
|
||||||
@s6 ntp-s6
|
|
||||||
@s6 bluez-s6
|
|
||||||
|
|
||||||
intel-ucode
|
|
||||||
amd-ucode
|
|
||||||
|
|
||||||
artix-grub-live
|
|
||||||
artix-grub-theme
|
|
||||||
artix-branding-base
|
|
||||||
|
@@ -1,50 +1,49 @@
|
|||||||
GRUB_DEFAULT="0"
|
GRUB_DEFAULT=saved
|
||||||
GRUB_TIMEOUT="3"
|
GRUB_TIMEOUT=5
|
||||||
GRUB_DISTRIBUTOR="Artix"
|
GRUB_DISTRIBUTOR="Artix"
|
||||||
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
|
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
|
||||||
GRUB_CMDLINE_LINUX="net.ifnames=0"
|
GRUB_CMDLINE_LINUX=""
|
||||||
|
|
||||||
|
# If you want to enable the save default function, uncomment the following
|
||||||
|
# line, and set GRUB_DEFAULT to saved.
|
||||||
|
GRUB_SAVEDEFAULT=true
|
||||||
|
|
||||||
# Preload both GPT and MBR modules so that they are not missed
|
# Preload both GPT and MBR modules so that they are not missed
|
||||||
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
|
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
|
||||||
|
|
||||||
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
|
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
|
||||||
#GRUB_HIDDEN_TIMEOUT="5"
|
#GRUB_HIDDEN_TIMEOUT=5
|
||||||
#GRUB_HIDDEN_TIMEOUT_QUIET="true"
|
#GRUB_HIDDEN_TIMEOUT_QUIET=true
|
||||||
|
|
||||||
# Uncomment to use basic console
|
# Uncomment to use basic console
|
||||||
GRUB_TERMINAL_INPUT="console"
|
GRUB_TERMINAL_INPUT=console
|
||||||
|
|
||||||
# Uncomment to disable graphical terminal
|
# Uncomment to disable graphical terminal
|
||||||
#GRUB_TERMINAL_OUTPUT="console"
|
#GRUB_TERMINAL_OUTPUT=console
|
||||||
|
|
||||||
# The resolution used on graphical terminal
|
# The resolution used on graphical terminal
|
||||||
# note that you can use only modes which your graphic card supports via VBE
|
# note that you can use only modes which your graphic card supports via VBE
|
||||||
# you can see them in real GRUB with the command `vbeinfo'
|
# you can see them in real GRUB with the command `vbeinfo'
|
||||||
#GRUB_GFXMODE="1680x1050x8"
|
GRUB_GFXMODE=auto
|
||||||
GRUB_GFXMODE="1024x768,800x600"
|
|
||||||
|
|
||||||
# Uncomment to allow the kernel use the same resolution used by grub
|
# Uncomment to allow the kernel use the same resolution used by grub
|
||||||
GRUB_GFXPAYLOAD_LINUX="keep"
|
GRUB_GFXPAYLOAD_LINUX=keep
|
||||||
|
|
||||||
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
|
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
|
||||||
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
|
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
|
||||||
#GRUB_DISABLE_LINUX_UUID="true"
|
#GRUB_DISABLE_LINUX_UUID=true
|
||||||
|
|
||||||
# Uncomment to disable generation of recovery mode menu entries
|
# Uncomment to disable generation of recovery mode menu entries
|
||||||
GRUB_DISABLE_RECOVERY="true"
|
GRUB_DISABLE_RECOVERY=true
|
||||||
|
|
||||||
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
|
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
|
||||||
# modes only. Entries specified as foreground/background.
|
# modes only. Entries specified as foreground/background.
|
||||||
export GRUB_COLOR_NORMAL="light-blue/black"
|
GRUB_COLOR_NORMAL="light-gray/black"
|
||||||
export GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
|
GRUB_COLOR_HIGHLIGHT="cyan/black"
|
||||||
|
|
||||||
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
|
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
|
||||||
#GRUB_BACKGROUND="/path/to/wallpaper"
|
GRUB_BACKGROUND="/usr/share/grub/background.png"
|
||||||
GRUB_THEME="/usr/share/grub/themes/artix/theme.txt"
|
#GRUB_THEME="/path/to/gfxtheme"
|
||||||
|
|
||||||
# Uncomment to get a beep at GRUB start
|
# Uncomment to get a beep at GRUB start
|
||||||
#GRUB_INIT_TUNE="480 440 1"
|
#GRUB_INIT_TUNE="480 440 1"
|
||||||
|
|
||||||
GRUB_SAVEDEFAULT="true"
|
|
||||||
|
|
||||||
GRUB_DISABLE_LINUX_RECOVERY="true"
|
|
@@ -1,9 +1,13 @@
|
|||||||
|
[H[2J
|
||||||
|
Artix Live ISO (\l) - \s-\r \m
|
||||||
|
|
||||||
[?25h[?7hArtix Live ISO (\l) - \s-\r \m
|
|
||||||
|
|
||||||
# Welcome to Artix #
|
|
||||||
|
# Welcome to Artix #
|
||||||
|
|
||||||
|
|
||||||
login for the live environment:
|
login for the live environment:
|
||||||
user 'artix'
|
user 'artix'
|
||||||
password 'artix'
|
password 'artix'
|
||||||
|
|
||||||
|
|
Binary file not shown.
@@ -0,0 +1,157 @@
|
|||||||
|
[AdBlock]
|
||||||
|
disabledRules=@Invalid()
|
||||||
|
enabled=true
|
||||||
|
lastUpdate=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x83\x1a\0\xf\x1du\0)
|
||||||
|
|
||||||
|
[AddressBar]
|
||||||
|
CustomProgressColor=@Variant(\0\0\0\x43\x1\xff\xff\x30\x30\x8c\x8c\xc6\xc6\0\0)
|
||||||
|
ProgressStyle=0
|
||||||
|
SelectAllTextOnClick=false
|
||||||
|
SelectAllTextOnDoubleClick=true
|
||||||
|
ShowLoadingProgress=false
|
||||||
|
UseCustomProgressColor=false
|
||||||
|
alwaysShowGoIcon=true
|
||||||
|
showSuggestions=0
|
||||||
|
showSwitchTab=true
|
||||||
|
useInlineCompletion=true
|
||||||
|
|
||||||
|
[Browser]
|
||||||
|
RunsWithoutOptimizeDb=5
|
||||||
|
|
||||||
|
[Browser-Fonts]
|
||||||
|
CursiveFont=TeX Gyre Chorus
|
||||||
|
DefaultFontSize=15
|
||||||
|
FantasyFont=Impact
|
||||||
|
FixedFont=Liberation Mono
|
||||||
|
FixedFontSize=14
|
||||||
|
MinimumFontSize=3
|
||||||
|
MinimumLogicalFontSize=5
|
||||||
|
SansSerifFont=Noto Sans
|
||||||
|
SerifFont=DejaVu Serif
|
||||||
|
StandardFont=DejaVu Serif
|
||||||
|
|
||||||
|
[Browser-Tabs-Settings]
|
||||||
|
ActivateLastTabWhenClosingActual=false
|
||||||
|
AlwaysSwitchTabsWithWheel=false
|
||||||
|
AskOnClosing=false
|
||||||
|
OpenNewTabsSelected=false
|
||||||
|
OpenPopupsInTabs=true
|
||||||
|
TabsOnTop=true
|
||||||
|
dontCloseWithOneTab=false
|
||||||
|
hideTabsWithOneTab=false
|
||||||
|
newEmptyTabAfterActive=false
|
||||||
|
newTabAfterActive=true
|
||||||
|
showCloseOnInactiveTabs=0
|
||||||
|
showClosedTabsButton=false
|
||||||
|
|
||||||
|
[Browser-View-Settings]
|
||||||
|
LocationBarWidth=1081
|
||||||
|
SideBar=
|
||||||
|
SideBarWidth=250
|
||||||
|
WebSearchBarWidth=314
|
||||||
|
WebViewWidth=2000
|
||||||
|
WindowGeometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\0\0\0\x6\x8f\0\0\x3\xf3\0\0\0\xc2\0\0\0\x82\0\0\x5\xcd\0\0\x3\x8b\0\0\0\0\x2\0\0\0\x6\x90)
|
||||||
|
instantBookmarksToolbar=false
|
||||||
|
settingsDialogPage=0
|
||||||
|
showBookmarksToolbar=false
|
||||||
|
showNavigationToolbar=true
|
||||||
|
showStatusBar=true
|
||||||
|
|
||||||
|
[Cookie-Settings]
|
||||||
|
allowCookies=true
|
||||||
|
blacklist=@Invalid()
|
||||||
|
deleteCookiesOnClose=false
|
||||||
|
filterThirdPartyCookies=false
|
||||||
|
filterTrackingCookie=false
|
||||||
|
whitelist=@Invalid()
|
||||||
|
|
||||||
|
[DownloadManager]
|
||||||
|
CloseManagerOnFinish=false
|
||||||
|
ExternalManagerArguments=
|
||||||
|
ExternalManagerExecutable=
|
||||||
|
UseExternalManager=false
|
||||||
|
defaultDownloadPath=
|
||||||
|
|
||||||
|
[Notifications]
|
||||||
|
Enabled=true
|
||||||
|
Position=@Point(10 10)
|
||||||
|
Timeout=6000
|
||||||
|
UseNativeDesktop=true
|
||||||
|
|
||||||
|
[Plugin-Settings]
|
||||||
|
AllowedPlugins=internal:adblock, lib:StatusBarIcons.so, lib:TabManager.so
|
||||||
|
|
||||||
|
[Preferences]
|
||||||
|
Geometry="@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\x1_\0\0\0]\0\0\x5s\0\0\x3=\0\0\x1\x65\0\0\0~\0\0\x5m\0\0\x3\x37\0\0\0\0\0\0\0\0\x6\x90)"
|
||||||
|
|
||||||
|
[SearchEngines]
|
||||||
|
DefaultEngine=DuckDuckGo
|
||||||
|
SearchFromAddressBar=true
|
||||||
|
SearchWithDefaultEngine=false
|
||||||
|
activeEngine=DuckDuckGo
|
||||||
|
showSearchSuggestions=true
|
||||||
|
|
||||||
|
[SessionRestore]
|
||||||
|
isRestoring=false
|
||||||
|
isRunning=true
|
||||||
|
|
||||||
|
[Shortcuts]
|
||||||
|
useSingleKeyShortcuts=false
|
||||||
|
useSpeedDialNumberShortcuts=true
|
||||||
|
useTabNumberShortcuts=true
|
||||||
|
|
||||||
|
[SpeedDial]
|
||||||
|
background=
|
||||||
|
backsize=auto
|
||||||
|
pages=
|
||||||
|
pagesrow=4
|
||||||
|
sdcenter=false
|
||||||
|
sdsize=231
|
||||||
|
|
||||||
|
[SpellCheck]
|
||||||
|
Enabled=false
|
||||||
|
Languages=@Invalid()
|
||||||
|
|
||||||
|
[Themes]
|
||||||
|
activeTheme=linux
|
||||||
|
|
||||||
|
[Web-Browser-Settings]
|
||||||
|
AllowLocalCache=true
|
||||||
|
AnimateScrolling=true
|
||||||
|
AutoCompletePasswords=true
|
||||||
|
AutomaticallyOpenProtocols=@Invalid()
|
||||||
|
BlockOpeningProtocols=@Invalid()
|
||||||
|
CheckUpdates=true
|
||||||
|
DefaultZoomLevel=6
|
||||||
|
DoNotTrack=false
|
||||||
|
HTML5StorageEnabled=true
|
||||||
|
IncludeLinkInFocusChain=false
|
||||||
|
LoadTabsOnActivation=true
|
||||||
|
LocalCacheSize=50
|
||||||
|
PrintElementBackground=true
|
||||||
|
SavePasswordsOnSites=true
|
||||||
|
SpatialNavigation=false
|
||||||
|
UseNativeScrollbars=false
|
||||||
|
XSSAuditing=false
|
||||||
|
allowHistory=true
|
||||||
|
allowJavaScript=true
|
||||||
|
allowPlugins=true
|
||||||
|
closeAppWithCtrlQ=true
|
||||||
|
deleteCacheOnClose=false
|
||||||
|
deleteHTML5StorageOnClose=false
|
||||||
|
deleteHistoryOnClose=false
|
||||||
|
lastActiveSessionPath=../session.dat
|
||||||
|
userStyleSheet=
|
||||||
|
wheelScrollLines=3
|
||||||
|
|
||||||
|
[Web-Proxy]
|
||||||
|
HostName=
|
||||||
|
Password=
|
||||||
|
Port=8080
|
||||||
|
ProxyType=2
|
||||||
|
Username=
|
||||||
|
|
||||||
|
[Web-URL-Settings]
|
||||||
|
afterLaunch=3
|
||||||
|
homepage=@Variant(\0\0\0\x11\0\0\0\x16https://artixlinux.org)
|
||||||
|
newTabUrl=@Variant(\0\0\0\x11\0\0\0\x10\x66\x61lkon:speeddial)
|
@@ -0,0 +1,2 @@
|
|||||||
|
[Profiles]
|
||||||
|
startProfile="default"
|
@@ -0,0 +1 @@
|
|||||||
|
limit = 256
|
42
base/live-overlay/etc/skel/.config/hexchat/colors.conf
Normal file
42
base/live-overlay/etc/skel/.config/hexchat/colors.conf
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
color_0 = d3d3 d7d7 cfcf
|
||||||
|
color_1 = 2e2e 3434 3636
|
||||||
|
color_2 = 3434 6565 a4a4
|
||||||
|
color_3 = 4e4e 9a9a 0606
|
||||||
|
color_4 = cccc 0000 0000
|
||||||
|
color_5 = 8f8f 3939 0202
|
||||||
|
color_6 = 5c5c 3535 6666
|
||||||
|
color_7 = cece 5c5c 0000
|
||||||
|
color_8 = c4c4 a0a0 0000
|
||||||
|
color_9 = 7373 d2d2 1616
|
||||||
|
color_10 = 1111 a8a8 7979
|
||||||
|
color_11 = 5858 a1a1 9d9d
|
||||||
|
color_12 = 5757 7979 9e9e
|
||||||
|
color_13 = a0d0 42d4 6562
|
||||||
|
color_14 = 5555 5757 5353
|
||||||
|
color_15 = 8888 8a8a 8585
|
||||||
|
color_16 = d3d3 d7d7 cfcf
|
||||||
|
color_17 = 2e2e 3434 3636
|
||||||
|
color_18 = 3434 6565 a4a4
|
||||||
|
color_19 = 4e4e 9a9a 0606
|
||||||
|
color_20 = cccc 0000 0000
|
||||||
|
color_21 = 8f8f 3939 0202
|
||||||
|
color_22 = 5c5c 3535 6666
|
||||||
|
color_23 = cece 5c5c 0000
|
||||||
|
color_24 = c4c4 a0a0 0000
|
||||||
|
color_25 = 7373 d2d2 1616
|
||||||
|
color_26 = 1111 a8a8 7979
|
||||||
|
color_27 = 5858 a1a1 9d9d
|
||||||
|
color_28 = 5757 7979 9e9e
|
||||||
|
color_29 = a0d0 42d4 6562
|
||||||
|
color_30 = 294a 2ba9 26eb
|
||||||
|
color_31 = 4029 4029 4029
|
||||||
|
color_256 = d3d3 d7d7 cfcf
|
||||||
|
color_257 = 2020 4a4a 8787
|
||||||
|
color_258 = dae6 dae6 dae6
|
||||||
|
color_259 = 0000 0000 0000
|
||||||
|
color_260 = 8f8f 3939 0202
|
||||||
|
color_261 = 3434 6565 a4a4
|
||||||
|
color_262 = 4e4e 9a9a 0606
|
||||||
|
color_263 = cece 5c5c 0000
|
||||||
|
color_264 = 8888 8a8a 8585
|
||||||
|
color_265 = a4a4 0000 0000
|
210
base/live-overlay/etc/skel/.config/hexchat/hexchat.conf
Normal file
210
base/live-overlay/etc/skel/.config/hexchat/hexchat.conf
Normal file
@@ -0,0 +1,210 @@
|
|||||||
|
version = 2.14.1
|
||||||
|
away_auto_unmark = 0
|
||||||
|
away_omit_alerts = 0
|
||||||
|
away_reason = I'm busy
|
||||||
|
away_show_once = 1
|
||||||
|
away_size_max = 300
|
||||||
|
away_timeout = 60
|
||||||
|
away_track = 1
|
||||||
|
completion_amount = 5
|
||||||
|
completion_auto = 0
|
||||||
|
completion_sort = 1
|
||||||
|
completion_suffix = :
|
||||||
|
dcc_auto_chat = 0
|
||||||
|
dcc_auto_recv = 1
|
||||||
|
dcc_auto_resume = 1
|
||||||
|
dcc_blocksize = 1024
|
||||||
|
dcc_completed_dir =
|
||||||
|
dcc_fast_send = 1
|
||||||
|
dcc_global_max_get_cps = 0
|
||||||
|
dcc_global_max_send_cps = 0
|
||||||
|
dcc_ip =
|
||||||
|
dcc_ip_from_server = 0
|
||||||
|
dcc_max_get_cps = 0
|
||||||
|
dcc_max_send_cps = 0
|
||||||
|
dcc_permissions = 384
|
||||||
|
dcc_port_first = 0
|
||||||
|
dcc_port_last = 0
|
||||||
|
dcc_remove = 0
|
||||||
|
dcc_save_nick = 0
|
||||||
|
dcc_send_fillspaces = 0
|
||||||
|
dcc_stall_timeout = 60
|
||||||
|
dcc_timeout = 180
|
||||||
|
flood_ctcp_num = 5
|
||||||
|
flood_ctcp_time = 30
|
||||||
|
flood_msg_num = 5
|
||||||
|
flood_msg_time = 30
|
||||||
|
gui_autoopen_chat = 1
|
||||||
|
gui_autoopen_dialog = 1
|
||||||
|
gui_autoopen_recv = 1
|
||||||
|
gui_autoopen_send = 1
|
||||||
|
gui_chanlist_maxusers = 9999
|
||||||
|
gui_chanlist_minusers = 5
|
||||||
|
gui_compact = 0
|
||||||
|
gui_dialog_height = 256
|
||||||
|
gui_dialog_left = 0
|
||||||
|
gui_dialog_top = 0
|
||||||
|
gui_dialog_width = 500
|
||||||
|
gui_filesize_iec = 0
|
||||||
|
gui_focus_omitalerts = 0
|
||||||
|
gui_hide_menu = 0
|
||||||
|
gui_input_attr = 1
|
||||||
|
gui_input_icon = 1
|
||||||
|
gui_input_nick = 1
|
||||||
|
gui_input_spell = 1
|
||||||
|
gui_input_style = 1
|
||||||
|
gui_join_dialog = 1
|
||||||
|
gui_lagometer = 2
|
||||||
|
gui_lang = 15
|
||||||
|
gui_mode_buttons = 0
|
||||||
|
gui_pane_divider_position = 0
|
||||||
|
gui_pane_left_size = 128
|
||||||
|
gui_pane_right_size = 100
|
||||||
|
gui_pane_right_size_min = 80
|
||||||
|
gui_quit_dialog = 1
|
||||||
|
gui_search_pos = 0
|
||||||
|
gui_slist_fav = 0
|
||||||
|
gui_slist_select = 0
|
||||||
|
gui_slist_skip = 1
|
||||||
|
gui_tab_chans = 1
|
||||||
|
gui_tab_dialogs = 1
|
||||||
|
gui_tab_dots = 0
|
||||||
|
gui_tab_icons = 1
|
||||||
|
gui_tab_layout = 0
|
||||||
|
gui_tab_middleclose = 1
|
||||||
|
gui_tab_newtofront = 2
|
||||||
|
gui_tab_pos = 6
|
||||||
|
gui_tab_scrollchans = 0
|
||||||
|
gui_tab_server = 1
|
||||||
|
gui_tab_small = 0
|
||||||
|
gui_tab_sort = 1
|
||||||
|
gui_tab_trunc = 20
|
||||||
|
gui_tab_utils = 0
|
||||||
|
gui_throttlemeter = 2
|
||||||
|
gui_topicbar = 1
|
||||||
|
gui_transparency = 255
|
||||||
|
gui_tray = 1
|
||||||
|
gui_tray_away = 0
|
||||||
|
gui_tray_blink = 1
|
||||||
|
gui_tray_close = 0
|
||||||
|
gui_tray_minimize = 0
|
||||||
|
gui_tray_quiet = 0
|
||||||
|
gui_ulist_buttons = 0
|
||||||
|
gui_ulist_color = 1
|
||||||
|
gui_ulist_count = 1
|
||||||
|
gui_ulist_doubleclick = QUERY %s
|
||||||
|
gui_ulist_hide = 0
|
||||||
|
gui_ulist_icons = 1
|
||||||
|
gui_ulist_pos = 3
|
||||||
|
gui_ulist_show_hosts = 0
|
||||||
|
gui_ulist_sort = 0
|
||||||
|
gui_ulist_style = 1
|
||||||
|
gui_url_mod = 0
|
||||||
|
gui_usermenu = 0
|
||||||
|
gui_win_height = 728
|
||||||
|
gui_win_fullscreen = 0
|
||||||
|
gui_win_left = 282
|
||||||
|
gui_win_modes = 1
|
||||||
|
gui_win_save = 1
|
||||||
|
gui_win_state = 0
|
||||||
|
gui_win_swap = 0
|
||||||
|
gui_win_top = 122
|
||||||
|
gui_win_ucount = 1
|
||||||
|
gui_win_width = 1103
|
||||||
|
identd_server = 0
|
||||||
|
identd_port = 0
|
||||||
|
input_balloon_chans = 0
|
||||||
|
input_balloon_hilight = 0
|
||||||
|
input_balloon_priv = 0
|
||||||
|
input_beep_chans = 0
|
||||||
|
input_beep_hilight = 0
|
||||||
|
input_beep_priv = 0
|
||||||
|
input_command_char = /
|
||||||
|
input_filter_beep = 1
|
||||||
|
input_flash_chans = 0
|
||||||
|
input_flash_hilight = 1
|
||||||
|
input_flash_priv = 1
|
||||||
|
input_perc_ascii = 0
|
||||||
|
input_perc_color = 0
|
||||||
|
input_tray_chans = 0
|
||||||
|
input_tray_hilight = 1
|
||||||
|
input_tray_priv = 1
|
||||||
|
irc_auto_rejoin = 0
|
||||||
|
irc_reconnect_rejoin = 1
|
||||||
|
irc_ban_type = 1
|
||||||
|
irc_cap_server_time = 1
|
||||||
|
irc_conf_mode = 0
|
||||||
|
irc_extra_hilight =
|
||||||
|
irc_hide_nickchange = 0
|
||||||
|
irc_hide_version = 0
|
||||||
|
irc_hidehost = 0
|
||||||
|
irc_id_ntext =
|
||||||
|
irc_id_ytext =
|
||||||
|
irc_invisible = 0
|
||||||
|
irc_join_delay = 5
|
||||||
|
irc_logging = 1
|
||||||
|
irc_logmask = %n/%c.log
|
||||||
|
irc_nick1 = artix_live_1
|
||||||
|
irc_nick2 = artix_live_2
|
||||||
|
irc_nick3 = artix_live_3
|
||||||
|
irc_nick_hilight =
|
||||||
|
irc_no_hilight = NickServ,ChanServ,InfoServ,N,Q
|
||||||
|
irc_notice_pos = 0
|
||||||
|
irc_part_reason = Leaving
|
||||||
|
irc_quit_reason = Leaving
|
||||||
|
irc_raw_modes = 0
|
||||||
|
irc_real_name = realname
|
||||||
|
irc_servernotice = 0
|
||||||
|
irc_skip_motd = 0
|
||||||
|
irc_user_name = loouom
|
||||||
|
irc_wallops = 0
|
||||||
|
irc_who_join = 1
|
||||||
|
irc_whois_front = 1
|
||||||
|
net_auto_reconnect = 1
|
||||||
|
net_auto_reconnectonfail = 0
|
||||||
|
net_bind_host =
|
||||||
|
net_ping_timeout = 60
|
||||||
|
net_proxy_auth = 0
|
||||||
|
net_proxy_host =
|
||||||
|
net_proxy_pass =
|
||||||
|
net_proxy_port = 0
|
||||||
|
net_proxy_type = 0
|
||||||
|
net_proxy_use = 0
|
||||||
|
net_proxy_user =
|
||||||
|
net_reconnect_delay = 10
|
||||||
|
net_throttle = 1
|
||||||
|
notify_timeout = 15
|
||||||
|
notify_whois_online = 0
|
||||||
|
perl_warnings = 0
|
||||||
|
stamp_log = 1
|
||||||
|
stamp_log_format = %b %d %H:%M:%S
|
||||||
|
stamp_text = 1
|
||||||
|
stamp_text_format = [%H:%M:%S]
|
||||||
|
text_autocopy_color = 0
|
||||||
|
text_autocopy_stamp = 0
|
||||||
|
text_autocopy_text = 1
|
||||||
|
text_background =
|
||||||
|
text_color_nicks = 1
|
||||||
|
text_font = Monospace 10
|
||||||
|
text_font_main = Monospace 9
|
||||||
|
text_font_alternative = Arial Unicode MS,Segoe UI Emoji,Lucida Sans Unicode,Meiryo,Symbola,Unifont
|
||||||
|
text_indent = 1
|
||||||
|
text_max_indent = 256
|
||||||
|
text_max_lines = 5000
|
||||||
|
text_replay = 1
|
||||||
|
text_search_case_match = 0
|
||||||
|
text_search_highlight_all = 0
|
||||||
|
text_search_follow = 1
|
||||||
|
text_search_regexp = 0
|
||||||
|
text_show_marker = 1
|
||||||
|
text_show_sep = 1
|
||||||
|
text_spell_langs = en_US
|
||||||
|
text_stripcolor_msg = 0
|
||||||
|
text_stripcolor_replay = 1
|
||||||
|
text_stripcolor_topic = 1
|
||||||
|
text_thin_sep = 1
|
||||||
|
text_transparent = 0
|
||||||
|
text_wordwrap = 1
|
||||||
|
url_grabber = 1
|
||||||
|
url_grabber_limit = 100
|
||||||
|
url_logging = 0
|
12
base/live-overlay/etc/skel/.config/hexchat/servlist.conf
Normal file
12
base/live-overlay/etc/skel/.config/hexchat/servlist.conf
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
v=2.14.1
|
||||||
|
|
||||||
|
N=freenode
|
||||||
|
L=6
|
||||||
|
E=UTF-8 (Unicode)
|
||||||
|
F=63
|
||||||
|
D=1
|
||||||
|
S=chat.freenode.net
|
||||||
|
S=irc.freenode.net
|
||||||
|
J=#artix
|
||||||
|
J=#artix-unregistered
|
||||||
|
|
@@ -0,0 +1,3 @@
|
|||||||
|
[Desktop]
|
||||||
|
Wallpaper=/usr/share/backgrounds/Artix_dna_spiral.png
|
||||||
|
WallpaperMode=zoom
|
69
base/live-overlay/etc/skel/Desktop/Instructions/.print.css
Normal file
69
base/live-overlay/etc/skel/Desktop/Instructions/.print.css
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
/***********************************************************************
|
||||||
|
** .print.css
|
||||||
|
** Copyright 2004 Patrick R. Michaud (pmichaud@pobox.com)
|
||||||
|
** This file is part of PmWiki; you can redistribute it and/or modify
|
||||||
|
** it under the terms of the GNU General Public License as published
|
||||||
|
** by the Free Software Foundation; either version 2 of the License, or
|
||||||
|
** (at your option) any later version. See pmwiki.php for full details.
|
||||||
|
***********************************************************************/
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
** These settings are part of the ?action=print skin. If you want
|
||||||
|
** to change these settings, create a new print template and set
|
||||||
|
** $PrintTemplateFmt in the config.php file to point to your new
|
||||||
|
** printing skin.
|
||||||
|
***********************************************************************/
|
||||||
|
|
||||||
|
body {
|
||||||
|
width:auto;
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
color: #dedede;
|
||||||
|
font-family:serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
#printhead {
|
||||||
|
font-family:sans-serif;
|
||||||
|
border-top:3px solid #a0a0a0;
|
||||||
|
border-bottom:5px solid #a0a0a0;
|
||||||
|
margin-bottom:1em;
|
||||||
|
}
|
||||||
|
#printhead h3 { margin-top:0px; }
|
||||||
|
#printhead h1 { margin-bottom:0px; }
|
||||||
|
|
||||||
|
#printtitle {
|
||||||
|
}
|
||||||
|
|
||||||
|
#printfoot {
|
||||||
|
clear:both;
|
||||||
|
margin-top:1em;
|
||||||
|
border-top:5px solid #a0a0a0;
|
||||||
|
font-size:smaller;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
a:link { color:#4444ee; font-weight:bold; text-decoration:none; }
|
||||||
|
a:visited { color:#4444ee; font-weight:bold; text-decoration:none; }
|
||||||
|
a.wikilink:hover { color: #4444ee; text-decoration:underline; }
|
||||||
|
a.createlink { color:#4444ee; }
|
||||||
|
a.createlink:visited { color:#4444ee; }
|
||||||
|
a.createlink:hover { color:#ff2222; }
|
||||||
|
|
||||||
|
.mini { padding:2px; border:1px solid #c6c6c6; background-color:#1a1a1a; }
|
||||||
|
.miniH, .miniF {display:block;}
|
||||||
|
|
||||||
|
a {color: #80d3fc; text-decoration: none;}
|
||||||
|
|
||||||
|
a:visited {color: #cc77cc;}
|
||||||
|
|
||||||
|
code {color: #99aabb;}
|
||||||
|
|
||||||
|
wikitrail {background-color: #232423;}
|
||||||
|
|
||||||
|
.container-fluid {
|
||||||
|
padding-right: 2px;
|
||||||
|
padding-left: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.well {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
@@ -0,0 +1,109 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||||
|
<title>Artix Wiki | Main / Configuration</title>
|
||||||
|
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||||
|
<!--HTMLHeader--><style type="text/css"><!--
|
||||||
|
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||||
|
code.escaped { white-space: nowrap; }
|
||||||
|
.vspace { margin-top:1.33em; }
|
||||||
|
.indent { margin-left:40px; }
|
||||||
|
.outdent { margin-left:40px; text-indent:-40px; }
|
||||||
|
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||||
|
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||||
|
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||||
|
img { border:0px; }
|
||||||
|
|
||||||
|
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||||
|
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||||
|
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||||
|
margin-left:0; margin-right: 40px;
|
||||||
|
}
|
||||||
|
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||||
|
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||||
|
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||||
|
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||||
|
|
||||||
|
table.markup { border:2px dotted #ccf; width:90%; }
|
||||||
|
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||||
|
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||||
|
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||||
|
table.markup caption { text-align:left; }
|
||||||
|
div.faq p, div.faq pre { margin-left:2em; }
|
||||||
|
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||||
|
div.faqtoc div.faq * { display:none; }
|
||||||
|
div.faqtoc div.faq p.question
|
||||||
|
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||||
|
div.faqtoc div.faq p.question * { display:inline; }
|
||||||
|
td.markup1 pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
.frame
|
||||||
|
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||||
|
.lfloat { float:left; margin-right:0.5em; }
|
||||||
|
.rfloat { float:right; margin-left:0.5em; }
|
||||||
|
a.varlink { text-decoration:none;}
|
||||||
|
|
||||||
|
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<script async="" src="Artix%20Wiki%20-%20Main%20_%20Configuration_files/analytics.js"></script><script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', 'UA-105345407-1', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
|
||||||
|
</script> <meta name="robots" content="noindex,nofollow">
|
||||||
|
<link rel="stylesheet" type="text/css" href="local.css">
|
||||||
|
<meta name="description" content="System configuration and fine tuning">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="printhead">
|
||||||
|
<h3>From Artix Wiki</h3>
|
||||||
|
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: Configuration</a></h1>
|
||||||
|
</div>
|
||||||
|
<!--PageText-->
|
||||||
|
<div id="wikitext">
|
||||||
|
<div class="vspace"></div><h3>OpenRC</h3>
|
||||||
|
<h4>OpenRC settings</h4>
|
||||||
|
<p>Various parameters are controlled by <code>/etc/rc.conf</code>. Most common tweaks include setting <strong>rc_parallel</strong> and<strong> rc_logger</strong> to <strong>YES</strong> and <strong>rc_depend_strict</strong> to <strong>NO</strong>.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Networking</h4>
|
||||||
|
<p>Most people will do fine with <strong>NetworkManager</strong>. For static network configuration it's preferable to install <strong>netifrc</strong> and edit <code>/etc/conf.d/net</code> for their setup.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>User permissions</h4>
|
||||||
|
<p>You can control who has access to and control of what by assigning
|
||||||
|
them to groups. A more than full permission set for the primary user is
|
||||||
|
granted by the following, consider reducing it to only necessary ones:
|
||||||
|
</p><pre> usermod -a -G video,audio,input,power,storage,optical,lp,scanner,dbus,adbusers,uucp,vboxusers USER
|
||||||
|
</pre><div class="vspace"></div><h4>Hostname</h4>
|
||||||
|
<p><a class="wikilink" href="https://wiki.artixlinux.org/Main/OpenRC?action=print">OpenRC</a> can set the host name either from <code>/etc/hostname</code> or from <code>/etc/conf.d/hostname</code>, with the former taking precedence. Their syntax differs somewhat:<br><code>/etc/hostname</code>
|
||||||
|
</p><pre> reallycoolhostname
|
||||||
|
</pre><p class="vspace"><code>/etc/conf.d/hostname</code>
|
||||||
|
</p><pre> hostname="reallycoolhostname"
|
||||||
|
</pre><div class="vspace"></div><h3>Runit</h3>
|
||||||
|
<h4>Keyboard configuration in console</h4>
|
||||||
|
<p>A persistent keymap can be set in <code>/etc/vconsole.conf</code>,
|
||||||
|
which is read by runit-rc on start-up. The KEYMAP variable is used for
|
||||||
|
specifying the keymap. If the variable is empty or not set, the us
|
||||||
|
keymap is used as default value. See vconsole.conf(5) (coming soon, but
|
||||||
|
in the meantime you can see <a class="urllink" href="https://jlk.fjfi.cvut.cz/arch/manpages/man/vconsole.conf.5" rel="nofollow">Arch's manual which refers to systemd</a>, but is compatible with runit) for all options. For example:
|
||||||
|
</p>
|
||||||
|
<p class="vspace"><code>/etc/vconsole.conf</code>
|
||||||
|
</p><pre> KEYMAP=uk
|
||||||
|
...
|
||||||
|
</pre><div class="vspace"></div><h4>Hostname</h4>
|
||||||
|
<p>You can set it in <code>/etc/hostname</code>.
|
||||||
|
</p>
|
||||||
|
<p class="vspace"><code>/etc/hostname</code>
|
||||||
|
</p><pre> reallycoolhostname
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="printfoot">
|
||||||
|
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Configuration</div>
|
||||||
|
<div class="lastmod">Page last modified on September 07, 2018, at 01:47 AM</div></div>
|
||||||
|
<!--HTMLFooter-->
|
||||||
|
|
||||||
|
|
||||||
|
</body><div id="simple-translate-button" style="display: none;"></div><div id="simple-translate-panel" style="display: none;"><p>...</p></div></html>
|
@@ -0,0 +1,176 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||||
|
<title>Artix Wiki | Main / Installation</title>
|
||||||
|
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||||
|
<!--HTMLHeader--><style type="text/css"><!--
|
||||||
|
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||||
|
code.escaped { white-space: nowrap; }
|
||||||
|
.vspace { margin-top:1.33em; }
|
||||||
|
.indent { margin-left:40px; }
|
||||||
|
.outdent { margin-left:40px; text-indent:-40px; }
|
||||||
|
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||||
|
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||||
|
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||||
|
img { border:0px; }
|
||||||
|
|
||||||
|
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||||
|
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||||
|
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||||
|
margin-left:0; margin-right: 40px;
|
||||||
|
}
|
||||||
|
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||||
|
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||||
|
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||||
|
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||||
|
|
||||||
|
table.markup { border:2px dotted #ccf; width:90%; }
|
||||||
|
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||||
|
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||||
|
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||||
|
table.markup caption { text-align:left; }
|
||||||
|
div.faq p, div.faq pre { margin-left:2em; }
|
||||||
|
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||||
|
div.faqtoc div.faq * { display:none; }
|
||||||
|
div.faqtoc div.faq p.question
|
||||||
|
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||||
|
div.faqtoc div.faq p.question * { display:inline; }
|
||||||
|
td.markup1 pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
.frame
|
||||||
|
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||||
|
.lfloat { float:left; margin-right:0.5em; }
|
||||||
|
.rfloat { float:right; margin-left:0.5em; }
|
||||||
|
a.varlink { text-decoration:none;}
|
||||||
|
|
||||||
|
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<script async="" src="Artix%20Wiki%20-%20Main%20_%20Installation_files/analytics.js"></script><script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', 'UA-105345407-1', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
|
||||||
|
</script> <meta name="robots" content="noindex,nofollow">
|
||||||
|
<link rel="stylesheet" type="text/css" href="local.css">
|
||||||
|
<meta name="description" content="Fresh Artix Installation">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="printhead">
|
||||||
|
<h3>From Artix Wiki</h3>
|
||||||
|
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: Installation</a></h1>
|
||||||
|
</div>
|
||||||
|
<!--PageText-->
|
||||||
|
<div id="wikitext">
|
||||||
|
<p class="vspace"><big>It is possible to use runit iso to install OpenRC-based system, and vice-versa.</big>
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h3>Fresh Artix installation from bootable media</h3>
|
||||||
|
<p>Artix can either be installed through the console or the GUI
|
||||||
|
installer. The GUI install is quite straightforward, we'll focus on the
|
||||||
|
console installation procedure here.
|
||||||
|
</p>
|
||||||
|
<p class="vspace">NOTE: The Artix ISO does not seem to support UEFI only
|
||||||
|
systems. On such a system, a successfull Artix install is possible by
|
||||||
|
booting an <a class="urllink" href="http://archlinux.org/download/" rel="nofollow">Arch Linux ISO</a>, converting the Arch live system to Artix as <a class="wikilink" href="https://wiki.artixlinux.org/Main/Migration?action=print">described here</a>, and then continuing with the installation steps below.
|
||||||
|
Before migrating the Arch Live system to Artix it is necessary to increase the size of the overlay tmpfs; this is done by
|
||||||
|
</p><pre> mount -o remount,size=4G /
|
||||||
|
</pre><p>(make sure your system has enough RAM). Adapt the size to what
|
||||||
|
you need; the pacman commands will show what they need to download and
|
||||||
|
install, the sum of both plus something more is needed.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Partition your disk (BIOS)</h4>
|
||||||
|
<p>Partition your hard drive (<code>/dev/sda</code> will be used in this guide) with <strong>fdisk</strong> or <strong>cfdisk</strong>, the partition numbers and order are at your discretion:
|
||||||
|
</p><pre> cfdisk /dev/sda
|
||||||
|
</pre><p>If you want to install side-by-side with other operating
|
||||||
|
systems, you must make some space on the disk by resizing the existing
|
||||||
|
partitions. You may use <strong>gparted</strong> for this, however
|
||||||
|
detailed instructions are out of the scope of this guide. Next, format
|
||||||
|
the new partitions, for example as ext4:
|
||||||
|
</p><pre> mkfs.ext4 -L ROOT /dev/sda2 <- root partition
|
||||||
|
mkfs.ext4 -L HOME /dev/sda3 <- home partition, optional
|
||||||
|
mkfs.ext4 -L BOOT /dev/sda4 <- boot partition, optional
|
||||||
|
mkswap -L SWAP /dev/sda1 <- swap partition
|
||||||
|
</pre><p>The -L switch assigns labels to the partitions, which helps referring to them later through <code>/dev/disk/by-label</code> without having to remember their numbers. Now, mount your partitions:
|
||||||
|
</p><pre> swapon /dev/sda1
|
||||||
|
mount /dev/sda2 /mnt
|
||||||
|
mount /dev/sda3 /mnt/home (if created)
|
||||||
|
mount /dev/sda4 /mnt/boot (if created)
|
||||||
|
</pre><div class="vspace"></div><h4>Install base system</h4>
|
||||||
|
<p>A working internet connection is required and assumed. A wired
|
||||||
|
connection is setup automatically, if found. Wireless ones must be
|
||||||
|
configured by the user. Verify your connection and update the
|
||||||
|
repositories:
|
||||||
|
</p><pre> ping artixlinux.org
|
||||||
|
pacman -Syy
|
||||||
|
</pre><p class="vspace">Use <strong>basestrap</strong> to install the <strong>base</strong> and optionally the <strong>base-devel</strong> package groups and your preferred init (currently available: <code>openrc</code> and <code>runit</code>):
|
||||||
|
</p><pre> basestrap /mnt base base-devel openrc
|
||||||
|
</pre><p>or
|
||||||
|
</p><pre> basestrap /mnt base base-devel runit
|
||||||
|
</pre><p class="vspace">Use <strong>fstabgen</strong> to generate <code>/etc/fstab</code>, use -U for UUIDs and -L for partition labels:
|
||||||
|
</p><pre> fstabgen -L /mnt >>/mnt/etc/fstab
|
||||||
|
</pre><p class="vspace">Check the resulting fstab for errors before rebooting. Now, you can chroot into your new Artix system with:
|
||||||
|
</p><pre> artools-chroot /mnt
|
||||||
|
</pre><div class="vspace"></div><h4>Configure the base system</h4>
|
||||||
|
<p>First, install <strong>grub</strong> and <strong>os-prober</strong> (for detecting other installed operating systems):
|
||||||
|
</p><pre> pacman -S grub os-prober
|
||||||
|
grub-install --recheck /dev/sda
|
||||||
|
grub-mkconfig -o /boot/grub/grub.cfg
|
||||||
|
</pre><p>Create a user and password:
|
||||||
|
</p><pre> useradd -m user
|
||||||
|
passwd user
|
||||||
|
</pre><p>Set root password:
|
||||||
|
</p><pre> passwd
|
||||||
|
</pre><p class="vspace">Install <strong>networkmanager</strong>:
|
||||||
|
</p><pre> pacman -S networkmanager networkmanager-openrc network-manager-applet
|
||||||
|
rc-update add NetworkManager default
|
||||||
|
</pre><p class="vspace">Generate locales:
|
||||||
|
</p><pre> nano /etc/locale.gen <- uncomment your locale
|
||||||
|
locale-gen
|
||||||
|
</pre><p>To set the locale systemwide, edit <code>/etc/profile.d/locale.sh</code> (which is sourced by <code>/etc/profile</code>) or <code>/etc/bash/bashrc.d/artix.bashrc</code> or <code>/etc/bash/bashrc.d/local.bashrc</code>; user-specific changes may be made to their respective <code>~/.bashrc</code>, for example:
|
||||||
|
</p><pre> export LANG="en_US.UTF-8"
|
||||||
|
export LC_COLLATE="C"
|
||||||
|
</pre><div class="vspace"></div><h4>Post installation configuration</h4>
|
||||||
|
<p>Now, you can reboot and enter into your new installation:
|
||||||
|
</p><pre> exit <- exit chroot environment
|
||||||
|
umount -R /mnt
|
||||||
|
reboot
|
||||||
|
</pre><p>Once shutdown is complete, remove your installation media. If
|
||||||
|
all went well, you should boot into your new system. Log in as your root
|
||||||
|
to complete the post-installation configuration.
|
||||||
|
To get a graphical environment you need to install the xorg group:
|
||||||
|
</p><pre> pacman -S xorg
|
||||||
|
</pre><p>Choose your packages, or just install all of them. For the closed-source nvidia drivers you can use the <strong>nvidia-lts</strong> package, as our default kernel is <strong>linux-lts</strong>:
|
||||||
|
</p><pre> pacman -S nvidia-lts
|
||||||
|
</pre><p>Older nvidia cards work with the legacy series, <strong>nvidia-340xx-lts</strong> and <strong>nvidia-304xx-lts</strong>.
|
||||||
|
If you want to run a custom kernel, you can install the respective
|
||||||
|
nvidia dkms package which ensures all installed kernels get their nvidia
|
||||||
|
modules.
|
||||||
|
AMD and Intel cards enjoy excellent (or near-excellent) 3D support with
|
||||||
|
open-source drivers. Read the Arch wiki, for information on how Xorg
|
||||||
|
chooses the best available video driver and which one is optimal for
|
||||||
|
your hardware.
|
||||||
|
</p>
|
||||||
|
<p class="vspace">Install a desktop environment, for example <strong>MATE</strong>, <strong>LXQt</strong> or <strong>XFCE4</strong>:
|
||||||
|
</p><pre> pacman -S mate mate-extra xfce4 xfce4-goodies lxqt
|
||||||
|
</pre><p>And optionally a display manager, like <strong>LXDM</strong> or <strong>SDDM</strong>:
|
||||||
|
</p><pre> pacman -S lxdm displaymanager-openrc
|
||||||
|
rc-update add xdm default
|
||||||
|
nano /etc/conf.d/xdm <- edit and set DISPLAYMANAGER="lxdm"
|
||||||
|
</pre><p>Or you can use .xinitrc to launch your DE manually; edit (or create) <code>~/.xinitrc</code> and add <strong>exec mate-session</strong>.
|
||||||
|
Notice: <strong>mate-session</strong> and quite a few other packages
|
||||||
|
from the Arch repositories are compiled against systemd even if they
|
||||||
|
don't actually use it, at least not as PID1; to satisfy the library link
|
||||||
|
you may install <strong>libsystemd-dummy</strong> and <strong>systemd-dummy</strong>.
|
||||||
|
</p><pre> pacman -S systemd-dummy libsystemd-dummy
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="printfoot">
|
||||||
|
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Installation</div>
|
||||||
|
<div class="lastmod">Page last modified on August 24, 2018, at 10:56 AM</div></div>
|
||||||
|
<!--HTMLFooter-->
|
||||||
|
|
||||||
|
|
||||||
|
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
@@ -0,0 +1,196 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||||
|
<title>Artix Wiki | Main / OpenRC</title>
|
||||||
|
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||||
|
<!--HTMLHeader--><style type="text/css"><!--
|
||||||
|
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||||
|
code.escaped { white-space: nowrap; }
|
||||||
|
.vspace { margin-top:1.33em; }
|
||||||
|
.indent { margin-left:40px; }
|
||||||
|
.outdent { margin-left:40px; text-indent:-40px; }
|
||||||
|
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||||
|
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||||
|
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||||
|
img { border:0px; }
|
||||||
|
|
||||||
|
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||||
|
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||||
|
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||||
|
margin-left:0; margin-right: 40px;
|
||||||
|
}
|
||||||
|
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||||
|
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||||
|
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||||
|
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||||
|
|
||||||
|
table.markup { border:2px dotted #ccf; width:90%; }
|
||||||
|
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||||
|
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||||
|
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||||
|
table.markup caption { text-align:left; }
|
||||||
|
div.faq p, div.faq pre { margin-left:2em; }
|
||||||
|
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||||
|
div.faqtoc div.faq * { display:none; }
|
||||||
|
div.faqtoc div.faq p.question
|
||||||
|
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||||
|
div.faqtoc div.faq p.question * { display:inline; }
|
||||||
|
td.markup1 pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
.frame
|
||||||
|
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||||
|
.lfloat { float:left; margin-right:0.5em; }
|
||||||
|
.rfloat { float:right; margin-left:0.5em; }
|
||||||
|
a.varlink { text-decoration:none;}
|
||||||
|
|
||||||
|
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<script async="" src="Artix%20Wiki%20-%20Main%20_%20OpenRC_files/analytics.js"></script><script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', 'UA-105345407-1', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
|
||||||
|
</script> <meta name="robots" content="noindex,nofollow">
|
||||||
|
<link rel="stylesheet" type="text/css" href="local.css">
|
||||||
|
<meta name="description" content="The OpenRC init system">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="printhead">
|
||||||
|
<h3>From Artix Wiki</h3>
|
||||||
|
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: OpenRC</a></h1>
|
||||||
|
</div>
|
||||||
|
<!--PageText-->
|
||||||
|
<div id="wikitext">
|
||||||
|
<p class="vspace"><strong><big>OpenRC</big></strong>
|
||||||
|
</p>
|
||||||
|
<p class="vspace">OpenRC is a dependency-based init system that
|
||||||
|
initially maintained compatibility with sysvinit (/sbin/init) and,
|
||||||
|
beginning with OpenRC 0.25, provided its own. OpenRC was written by <a class="urllink" href="https://gentoo.org/" rel="nofollow">Gentoo</a> developers and it is designed to be used by other distributions and BSD systems.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Features</h4>
|
||||||
|
<p>OpenRC provides features such as hardware initiated initscripts or cgroups support.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Configuration</h4>
|
||||||
|
<p><code>/etc/rc.conf</code> is the global OpenRC configuration file.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Network management</h4>
|
||||||
|
<p>OpenRC can be used with one of several network managers or even with none, see <code>/etc/conf.d/net</code> for examples of static or dynamic network configuration. The <strong>netifrc</strong>
|
||||||
|
package provides a collection of modules for configuring and managing
|
||||||
|
network interfaces via individual, per-interface scripts located in the
|
||||||
|
/etc/init.d/ directory. Its presence is not mandatory or it can be left
|
||||||
|
unused in favour of another network manager.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Dependency behavior</h4>
|
||||||
|
<p>Changing the default dependencies of init scripts might be needed to fit more complex setups. See <code>/etc/rc.conf</code> for how to change the default behavior; notice the <strong>rc_depend_strict</strong> option. In addition, the following networking examples show how flexible OpenRC can be.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Selecting a specific runlevel at boot</h4>
|
||||||
|
<p>OpenRC reads the kernel command-line used at boot time, and will start the runlevel specified by the <strong>softlevel</strong> parameter if provided, instead of <strong>default</strong>. For instance, you can choose whether to boot into the <strong>default</strong>, <strong>nonetwork</strong> or <strong>single-user</strong> runlevels with the following example grub.conf configuration:
|
||||||
|
</p><pre> /boot/grub/grub.conf
|
||||||
|
title=Regular start-up
|
||||||
|
kernel (hd0,0)/boot/vmlinuz-linux root=/dev/sda3
|
||||||
|
title=Start without networking
|
||||||
|
kernel (hd0,0)/boot/vmlinuz-linux root=/dev/sda3 softlevel=nonetwork
|
||||||
|
title=Single-user mode
|
||||||
|
kernel (hd0,0)/boot/vmlinuz-linux root=/dev/sda3 softlevel=single
|
||||||
|
</pre><div class="vspace"></div><h3>Usage</h3>
|
||||||
|
<h4>Runlevels</h4>
|
||||||
|
<p>OpenRC uses runlevels in very much the same way as sysvinit (or BSD
|
||||||
|
init). At any given time the system is in one of the defined runlevels.
|
||||||
|
There are three internal runlevels and four user defined runlevels.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><ul><li>Internal runlevels, the names are self-explanatory:
|
||||||
|
<ul><li><code>sysinit</code>
|
||||||
|
</li><li><code>shutdown</code>
|
||||||
|
</li><li><code>reboot</code>
|
||||||
|
</li></ul><div class="vspace"></div></li><li>User Runlevels:
|
||||||
|
<div class="vspace"></div><ul><li><code>boot</code>: Starts all system-necessary services for other runlevels
|
||||||
|
</li><li><code>default</code>: Used for day-to-day-operations
|
||||||
|
</li><li><code>nonetwork</code>: Used when no network connectivity is required
|
||||||
|
</li><li><code>single</code>: Single-user mode
|
||||||
|
</li></ul></li></ul><p class="vspace">The system can switch to a runlevel with the <strong>openrc <runlevel></strong> command, e.g.:
|
||||||
|
</p><pre> openrc nonetwork
|
||||||
|
</pre><div class="vspace"></div><h4>Control</h4>
|
||||||
|
<p>OpenRC can be controlled and configured using <strong>openrc</strong>, <strong>rc-service</strong>, <strong>rc-update</strong> and <strong>rc-status</strong> commands.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Adding/removing services to/from runlevels</h4>
|
||||||
|
<pre> # rc-update add net.eth0 boot
|
||||||
|
# rc-update del dropbox default
|
||||||
|
</pre><div class="vspace"></div><h4>Listing</h4>
|
||||||
|
<p>Use <strong>rc-update show -v</strong> to display all available init scripts and their their current runlevel (if they have been added to one):
|
||||||
|
</p><pre> # rc-update show -v
|
||||||
|
</pre><p>Running <strong>rc-update</strong> or <strong>rc-update show</strong> will display only the init scripts that have been added to a runlevel.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Named runlevels</h4>
|
||||||
|
<p>OpenRC runlevels are directories living in <code>/etc/runlevels</code> to create additional runlevels is enough to issue:
|
||||||
|
</p><pre> # install -d /etc/runlevels/$runlevel
|
||||||
|
</pre><div class="vspace"></div><h4>Stacked runlevels</h4>
|
||||||
|
<p>It is possible to manage variants using <strong>rc-update -s</strong>. An example for using stacked runlevels on laptop to group networking services based on location is at <a class="urllink" href="https://wiki.gentoo.org/wiki/OpenRC/StackedRunlevel" rel="nofollow">OpenRC/StackedRunlevel</a>.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Hotplug</h4>
|
||||||
|
<p>OpenRC monitors and can be triggered by external events, such as new hardware from udev. See <a class="urllink" href="https://wiki.gentoo.org/wiki/Iphone_USB_Tethering#udev_trigger" rel="nofollow">OpenRC/Event Driven</a> for details.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Automatic respawning of crashed services</h4>
|
||||||
|
<p>OpenRC can return the state of services to the runlevel's setting
|
||||||
|
state, provide stateful init scripts and automatic respawning. If one
|
||||||
|
issues <strong>openrc</strong> as root (for default runlevel), crashed
|
||||||
|
services will start and manually launched services will stop. To prevent
|
||||||
|
the latter you can run <strong>openrc -n</strong> (--not-stop)
|
||||||
|
By default openrc will attempt just to start crashed services, not restart. This сontrolled by <strong>rc_crashed_stop</strong> (default NO) and <strong>rc_crashed_start</strong> (default YES) options in <code>/etc/rc.conf</code>.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>CGroups support</h4>
|
||||||
|
<p>OpenRC has extended cgroups support. See <a class="urllink" href="https://wiki.gentoo.org/wiki/OpenRC/CGroups" rel="nofollow">OpenRC/CGroups</a> for details.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>rc.local</h4>
|
||||||
|
<p>OpenRC doesn't execute <code>/etc/rc.local</code> by default; instead, it executes scripts from <code>/etc/local.d</code> ending in .start when local service starts and .stop when it stops. To mimic the good old <code>rc.local</code> behaviour, create <code>/etc/rc.local/rc.local.start</code> with the following and make it executable with <strong>chmod +x</strong>:
|
||||||
|
</p><pre> :
|
||||||
|
# /etc/local.d/rc.local.start
|
||||||
|
[ -e /etc/rc.local ] && /etc/rc.local
|
||||||
|
</pre><p>Make sure that the <strong>local</strong> service is enabled. The scripts in <code>/etc/local.d</code> are executed in lexical order and the example above assumes <code>/etc/rc.local</code> has got execute permissions.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h3>Examples</h3>
|
||||||
|
<h4>Multiple network interfaces</h4>
|
||||||
|
<p>The SSH service must come up with the internal network, for instance eth0 and never wlan0.
|
||||||
|
Override the <strong>net</strong> dependency from <code>/etc/init.d/sshd</code>, and refine it to depend on <strong>net.eth0</strong>:
|
||||||
|
</p><pre> /etc/conf.d/sshd
|
||||||
|
rc_need="!net net.eth0"
|
||||||
|
</pre><div class="vspace"></div><h4>Multiple network interfaces in multiple runlevels</h4>
|
||||||
|
<p>The SSH service must start with <strong>eth0</strong> (not <strong>wlan0</strong>) in "default" runlevel, but in "office" runlevel it must start with <strong>wlan0</strong> (not <strong>eth0</strong>).
|
||||||
|
</p><pre> /etc/rc.conf
|
||||||
|
#rc_depend_strict="YES"
|
||||||
|
</pre><p>Make additional symlinks to sshd with the network interface names:
|
||||||
|
</p><pre> # ln -s sshd /etc/init.d/sshd.eth0
|
||||||
|
# ln -s sshd /etc/init.d/sshd.wlan0
|
||||||
|
</pre><p>Settings are read from <code>/etc/conf.d/sshd.eth0</code> and <code>/etc/conf.d/sshd.wlan0</code> now:
|
||||||
|
</p><pre> # cp /etc/conf.d/sshd /etc/conf.d/sshd.eth0
|
||||||
|
# cp /etc/conf.d/sshd /etc/conf.d/sshd.wlan0
|
||||||
|
</pre><p>Add the dependencies:
|
||||||
|
</p><pre> # echo 'rc_need="!net net.eth0"' >> /etc/conf.d/sshd.eth0
|
||||||
|
# echo 'rc_need="!net net.wlan0"' >> /etc/conf.d/sshd.wlan0
|
||||||
|
</pre><p>In this example net.eth0 and net.wlan0 read their settings from <code>/etc/conf.d/net</code>, or <code>/etc/conf.d/net.office</code>, depending on the active runlevel. Add all runscripts to the different runlevels:
|
||||||
|
</p><pre> # rc-update add sshd.eth0 default
|
||||||
|
# rc-update add sshd.wlan0 office
|
||||||
|
# rc-update add net.eth0 default office
|
||||||
|
# rc-update add net.wlan0 default office
|
||||||
|
</pre><p>To switch between "default" runlevel and "office" runlevel
|
||||||
|
without rebooting the computer, change to "nonetwork" runlevel in
|
||||||
|
between. The network interfaces will be stopped this way, and re-read
|
||||||
|
their runlevel specific configuration. This works best when "nonetwork"
|
||||||
|
is a stacked runlevel in both the "default" and "office" runlevels, and
|
||||||
|
the display manager and other non-network services are added to the
|
||||||
|
"nonetwork" runlevel only.
|
||||||
|
<br> <em>default runlevel <---> nonetwork runlevel <---> office runlevel</em>
|
||||||
|
</p><pre> # rc nonetwork && rc office
|
||||||
|
# rc nonetwork && rc default
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="printfoot">
|
||||||
|
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/OpenRC</div>
|
||||||
|
<div class="lastmod">Page last modified on June 29, 2018, at 09:59 PM</div></div>
|
||||||
|
<!--HTMLFooter-->
|
||||||
|
|
||||||
|
|
||||||
|
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
@@ -0,0 +1,164 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||||
|
<title>Artix Wiki | Main / Troubleshooting</title>
|
||||||
|
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||||
|
<!--HTMLHeader--><style type="text/css"><!--
|
||||||
|
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||||
|
code.escaped { white-space: nowrap; }
|
||||||
|
.vspace { margin-top:1.33em; }
|
||||||
|
.indent { margin-left:40px; }
|
||||||
|
.outdent { margin-left:40px; text-indent:-40px; }
|
||||||
|
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||||
|
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||||
|
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||||
|
img { border:0px; }
|
||||||
|
|
||||||
|
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||||
|
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||||
|
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||||
|
margin-left:0; margin-right: 40px;
|
||||||
|
}
|
||||||
|
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||||
|
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||||
|
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||||
|
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||||
|
|
||||||
|
table.markup { border:2px dotted #ccf; width:90%; }
|
||||||
|
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||||
|
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||||
|
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||||
|
table.markup caption { text-align:left; }
|
||||||
|
div.faq p, div.faq pre { margin-left:2em; }
|
||||||
|
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||||
|
div.faqtoc div.faq * { display:none; }
|
||||||
|
div.faqtoc div.faq p.question
|
||||||
|
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||||
|
div.faqtoc div.faq p.question * { display:inline; }
|
||||||
|
td.markup1 pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
.frame
|
||||||
|
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||||
|
.lfloat { float:left; margin-right:0.5em; }
|
||||||
|
.rfloat { float:right; margin-left:0.5em; }
|
||||||
|
a.varlink { text-decoration:none;}
|
||||||
|
|
||||||
|
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<script async="" src="Artix%20Wiki%20-%20Main%20_%20Troubleshooting_files/analytics.js"></script><script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', 'UA-105345407-1', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
|
||||||
|
</script> <meta name="robots" content="noindex,nofollow">
|
||||||
|
<link rel="stylesheet" type="text/css" href="local.css">
|
||||||
|
<meta name="description" content="Troubleshooting your Artix issues">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="printhead">
|
||||||
|
<h3>From Artix Wiki</h3>
|
||||||
|
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: Troubleshooting</a></h1>
|
||||||
|
</div>
|
||||||
|
<!--PageText-->
|
||||||
|
<div id="wikitext">
|
||||||
|
<div class="vspace"></div><h3>Updating icu/ncurses/whatever breaks a ton of packages</h3>
|
||||||
|
<p>Make sure you have the correct repositories activated in <code>/etc/pacman.conf</code>.
|
||||||
|
Testing [gremlins] repositories should be disabled by default. If you
|
||||||
|
want to use them, you should also uncomment [testing] from Arch. These <strong>must</strong> be above all other repositories.
|
||||||
|
<strong>Note:</strong> [gremlins] is Artix equivalent of Arch [testing]
|
||||||
|
</p><pre> #[gremlins]
|
||||||
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
#[galaxy-gremlins]
|
||||||
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
#[lib32-gremlins]
|
||||||
|
#Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
[system]
|
||||||
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
[world]
|
||||||
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
[galaxy]
|
||||||
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
|
# enable the multilib repositories as required here.
|
||||||
|
[lib32]
|
||||||
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
</pre><p>Since we still depend on some of Arch packages from [extra] and
|
||||||
|
most of [community], some version mismatches during updates and until
|
||||||
|
we fully sync may cause problems. In such case, enabling temporarily the
|
||||||
|
testing repositories might just give you the right package to fix your
|
||||||
|
situation.
|
||||||
|
</p>
|
||||||
|
<p class="vspace">The list below might not be updated, always check the <a class="urllink" href="https://gitea.artixlinux.org/packages/artix-mirrorlist/src/branch/master/repos/core-any/mirrorlist" rel="nofollow">Gitea repository</a>.
|
||||||
|
</p><pre> ## Artix Linux repository mirrorlist
|
||||||
|
## Generated on 2017-10-21
|
||||||
|
##
|
||||||
|
# Artix mirrors
|
||||||
|
Server = <a class="urllink" href="https://mirror.clarkson.edu/artix-linux/repos/$repo/os/$arch" rel="nofollow">https://mirror.clarkson.edu/artix-linux/repos/$repo/os/$arch</a>
|
||||||
|
Server = <a class="urllink" href="https://ftp.sh.cvut.cz/artix-linux/$repo/os/$arch" rel="nofollow">https://ftp.sh.cvut.cz/artix-linux/$repo/os/$arch</a>
|
||||||
|
Server = <a class="urllink" href="https://ftp.cc.uoc.gr/mirrors/linux/artixlinux/$repo/os/$arch" rel="nofollow">https://ftp.cc.uoc.gr/mirrors/linux/artixlinux/$repo/os/$arch</a>
|
||||||
|
Server = <a class="urllink" href="https://artix.wheaton.edu/repos/$repo/os/$arch" rel="nofollow">https://artix.wheaton.edu/repos/$repo/os/$arch</a>
|
||||||
|
Server = <a class="urllink" href="http://mirror.strits.dk/artix-linux/repos/$repo/os/$arch" rel="nofollow">http://mirror.strits.dk/artix-linux/repos/$repo/os/$arch</a>
|
||||||
|
Server = <a class="urllink" href="https://mirrors.dotsrc.org/artix-linux/repos/$repo/os/$arch" rel="nofollow">https://mirrors.dotsrc.org/artix-linux/repos/$repo/os/$arch</a>
|
||||||
|
Server = <a class="urllink" href="http://mirror1.artixlinux.org/repos/$repo/os/$arch" rel="nofollow">http://mirror1.artixlinux.org/repos/$repo/os/$arch</a>
|
||||||
|
</pre><div class="vspace"></div><h3>Invalid or corrupted packages (PGP signature)</h3>
|
||||||
|
<p>If pacman warns you about invalid or corrupted packages, it may be
|
||||||
|
due to obsolete PGP keys or Arch-signed packages in the repos. Make sure
|
||||||
|
the Artix repos are above the Arch ones and:
|
||||||
|
</p>
|
||||||
|
<p class="vspace">1. Reinstall keyrings including the latest keys:
|
||||||
|
</p><pre> sudo pacman -Sy gnupg archlinux-keyring artix-keyring --force
|
||||||
|
</pre><p>If you can't install the artix-keyring because of , perform step 2 and repeat 1, otherwise proceed to step 3.
|
||||||
|
</p>
|
||||||
|
<p class="vspace">2. Remove old and possibly expired, revoked or invalid keys by issuing this command:
|
||||||
|
</p><pre> sudo rm -r /etc/pacman.d/gnupg
|
||||||
|
</pre><p>3. Initialize the pacman keyring:
|
||||||
|
</p><pre> sudo pacman-key --init
|
||||||
|
</pre><p>4. Load the signature keys:
|
||||||
|
</p><pre> sudo pacman-key --populate archlinux artix
|
||||||
|
</pre><p>5. Clear out the software packages downloaded during the aborted installation:
|
||||||
|
</p><pre> sudo pacman -Scc
|
||||||
|
sudo pacman -Syyu
|
||||||
|
</pre><p>6. In a pinch, install the package with the -U pacman switch:
|
||||||
|
</p><pre> pacman -U /var/cache/pacman/pkg/package-1.3.9-1.x86_64.pkg.tar.xz
|
||||||
|
</pre><div class="vspace"></div><h3>Can't play games, run Steam etc!</h3>
|
||||||
|
<p>You must enable [lib32] from Artix and [multilib] from Arch in <code>/etc/pacman.conf</code> and install relevant packages for 32bit executables. Make sure [lib32] is above [multilib] (as a matter of fact <strong>all</strong> Artix repos must be above Arch's).
|
||||||
|
</p><pre> [lib32]
|
||||||
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
[multilib]
|
||||||
|
Include = /etc/pacman.d/mirrorlist-arch
|
||||||
|
</pre><div class="vspace"></div><h3>Warning: this GPT partition label contains no BIOS Boot Partition; embedding won't be possible.</h3>
|
||||||
|
<p>Install parted and execute:
|
||||||
|
</p><pre> parted -s /dev/sdx set 1 bios_grub on
|
||||||
|
</pre><div class="vspace"></div><h3>I'm having <strong>dbus-related</strong> problems and I keep seeing messages about <code>/etc/machine-id</code></h3>
|
||||||
|
<p>This file originated from dbus development and was adopted by systemd
|
||||||
|
as a universally unique machine identifier. Ergo, it is a useless (for
|
||||||
|
the end user) tag but apparently of some use to dbus because <a class="urllink" href="https://dbus.freedesktop.org/doc/dbus-uuidgen.1.html" rel="nofollow">"<em>The
|
||||||
|
important properties of the machine UUID are that 1) it remains
|
||||||
|
unchanged until the next reboot and 2) it is different for any two
|
||||||
|
running instances of the OS kernel. That is, if two processes see the
|
||||||
|
same UUID, they should also see the same shared memory, UNIX domain
|
||||||
|
sockets, local X displays, localhost.localdomain resolution, process
|
||||||
|
IDs, and so forth.</em>"</a> Also, <a class="urllink" href="https://www.freedesktop.org/software/systemd/man/machine-id.html" rel="nofollow">"<em>The
|
||||||
|
simple configuration file format of /etc/machine-id originates in the
|
||||||
|
/var/lib/dbus/machine-id file introduced by D-Bus. In fact, this latter
|
||||||
|
file might be a symlink to /etc/machine-id.</em>"</a> and <a class="urllink" href="https://www.freedesktop.org/software/systemd/man/machine-id.html" rel="nofollow"><em>This
|
||||||
|
ID uniquely identifies the host. It should be considered
|
||||||
|
"confidential", and must not be exposed in untrusted environments, in
|
||||||
|
particular on the network.</em></a> Privacy-conscious people <em>might</em> want to regenerate their machine-ids frequently; a new ID can be generated with
|
||||||
|
</p><pre> dbus-uuidgen >| /etc/machine-id
|
||||||
|
</pre><p>or
|
||||||
|
</p><pre> dbus-uuidgen >| /var/lib/dbus/machine-id
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="printfoot">
|
||||||
|
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Troubleshooting</div>
|
||||||
|
<div class="lastmod">Page last modified on August 12, 2018, at 01:15 PM</div></div>
|
||||||
|
<!--HTMLFooter-->
|
||||||
|
|
||||||
|
|
||||||
|
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
@@ -0,0 +1,157 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||||
|
<title>Artix Wiki | Main / runit</title>
|
||||||
|
<link rel="stylesheet" href=".print.css" type="text/css">
|
||||||
|
<!--HTMLHeader--><style type="text/css"><!--
|
||||||
|
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
|
||||||
|
code.escaped { white-space: nowrap; }
|
||||||
|
.vspace { margin-top:1.33em; }
|
||||||
|
.indent { margin-left:40px; }
|
||||||
|
.outdent { margin-left:40px; text-indent:-40px; }
|
||||||
|
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
|
||||||
|
a.createlink { text-decoration:none; position:relative; top:-0.5em;
|
||||||
|
font-weight:bold; font-size:smaller; border-bottom:none; }
|
||||||
|
img { border:0px; }
|
||||||
|
|
||||||
|
.rtl, .rtl * {direction:rtl; unicode-bidi:bidi-override;}
|
||||||
|
.ltr, .ltr * {direction:ltr; unicode-bidi:bidi-override;}
|
||||||
|
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
|
||||||
|
margin-left:0; margin-right: 40px;
|
||||||
|
}
|
||||||
|
.ltplus{cursor:pointer; opacity:.3; font-weight:bold; padding: 0 .3em;}
|
||||||
|
.ltplus:hover{ color: white; background: blue; opacity: 1; }.TCprogress {background-color:#5af; min-height:13px; width:13px; color:#fff; margin-left:auto; margin-right:auto;}
|
||||||
|
table.TotalCounter td {font-size:x-small; text-align:center}.editconflict { color:green;
|
||||||
|
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
|
||||||
|
|
||||||
|
table.markup { border:2px dotted #ccf; width:90%; }
|
||||||
|
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
|
||||||
|
table.vert td.markup1 { border-bottom:1px solid #ccf; }
|
||||||
|
table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
|
||||||
|
table.markup caption { text-align:left; }
|
||||||
|
div.faq p, div.faq pre { margin-left:2em; }
|
||||||
|
div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
|
||||||
|
div.faqtoc div.faq * { display:none; }
|
||||||
|
div.faqtoc div.faq p.question
|
||||||
|
{ display:block; font-weight:normal; margin:0.5em 0 0.5em 20px; line-height:normal; }
|
||||||
|
div.faqtoc div.faq p.question * { display:inline; }
|
||||||
|
td.markup1 pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
.frame
|
||||||
|
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
|
||||||
|
.lfloat { float:left; margin-right:0.5em; }
|
||||||
|
.rfloat { float:right; margin-left:0.5em; }
|
||||||
|
a.varlink { text-decoration:none;}
|
||||||
|
|
||||||
|
--></style><link rel="icon" href="https://wiki.artixlinux.org/favicon.ico" type="image/x-icon"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<script async="" src="Artix%20Wiki%20-%20Main%20_%20runit_files/analytics.js"></script><script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', 'UA-105345407-1', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
|
||||||
|
</script> <meta name="robots" content="noindex,nofollow">
|
||||||
|
<link rel="stylesheet" type="text/css" href="local.css">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="printhead">
|
||||||
|
<h3>From Artix Wiki</h3>
|
||||||
|
<h1 class="pagename"><a href="https://wiki.artixlinux.org/Main">Main: runit</a></h1>
|
||||||
|
</div>
|
||||||
|
<!--PageText-->
|
||||||
|
<div id="wikitext">
|
||||||
|
<p class="vspace">runit is a suite of tools which provides an init (PID
|
||||||
|
1) as well as daemontools-compatible process supervision framework,
|
||||||
|
along with utilites which streamline creation and maintenance of
|
||||||
|
services.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h3>Installation</h3>
|
||||||
|
<p>Install the <code>runit</code> package.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h4>Installation of services</h4>
|
||||||
|
<p>runit service packages are named <code><em>package_name</em>-runit</code> and, when installed, will be available in <code>/etc/runit/sv</code>.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h3>Programs</h3>
|
||||||
|
<p>Runit has several programs, but usually you will only interact directly with one program only.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><ul><li><code>sv</code> - used for controlling services, getting status of services, and dependency checking.
|
||||||
|
</li><li><code>chpst</code> - control of a process environment,
|
||||||
|
including memory caps, limits on cores, data segments, environments,
|
||||||
|
user/group privileges, and more.
|
||||||
|
</li><li><code>runsv</code> - supervises a process, and optionally a log service for that process.
|
||||||
|
</li><li><code>svlogd</code> - a simple but powerful logger, includes
|
||||||
|
auto-rotation based on different methods (time, size, etc),
|
||||||
|
post-processing, pattern matching, and socket (remote logging) options.
|
||||||
|
Say goodbye to logrotate and the need to stop your services to rotate
|
||||||
|
logs.
|
||||||
|
</li><li><code>runsvchdir</code> - changes service levels (runlevels, see below)
|
||||||
|
</li><li><code>runsvdir</code> - starts a supervision tree
|
||||||
|
</li><li><code>runit-init</code> - PID 1, does almost nothing besides being the init
|
||||||
|
</li></ul><div class="vspace"></div><h3>Files</h3>
|
||||||
|
<p>There are several files that will be installed by <code>runit</code>.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><ul><li><code>/etc/runit/1</code> - stage 1, system’s one-time initialization tasks
|
||||||
|
</li><li><code>/etc/runit/2</code> - stage 2, Normally runs <code>runsvdir</code>, should not return until the system is going to halt or reboot.
|
||||||
|
</li><li><code>/etc/runit/3</code> - stage 3, system’s shutdown tasks
|
||||||
|
</li><li><code>/etc/runit/ctrlaltdel</code> - Runit will execute this when receiving a <code>SIGINT</code> signal
|
||||||
|
</li><li><code>/etc/runit/runsvdir/*</code> - Runlevels
|
||||||
|
</li><li><code>/etc/runit/sv/*</code> - directory containing subdirectories of available service files
|
||||||
|
</li><li><code>/run/runit/service</code> - always symlinked to active runlevel, <code>sv</code> will search for running service here
|
||||||
|
</li></ul><p class="vspace">However, since <code>runit</code> itself depends on <code>runit-rc</code>, there will be several extra rc files installed, most contained in <code>/etc/rc</code> and <code>/usr/lib/rc</code>.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h3>Basic usage</h3>
|
||||||
|
<p>Unlike other distros using runit, Artix doesn’t store its service directory in <code>/var/service</code> or <code>/service</code>, but in <code>/run/runit/service</code> instead.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><ul><li>Enable service (in runlevel <em>default</em>)<code># ln -s /etc/runit/sv/<em>service_name</em> /run/runit/service</code>
|
||||||
|
</li><li>Disable service <code> # rm /run/runit/service/<em>service_name</em></code>
|
||||||
|
</li><li>Stop immediately <code> # sv down <em>service_name</em></code> or <code> # sv stop <em>service_name</em></code>
|
||||||
|
</li><li>Start (if not running) <code> # sv up <em>service_name</em></code> or <code> # sv restart <em>service_name</em></code>
|
||||||
|
</li><li>Restart <code> # sv restart <em>service_name</em></code>
|
||||||
|
</li><li>Reload <code> # sv restart <em>service_name</em></code>
|
||||||
|
</li><li>Status check <code> # sv status <em>service_name</em></code>
|
||||||
|
</li><li>Switch runlevels (this will stop all services that are currently running and will start all services in the new runlevel) <code> # runsvchdir <em>runlevel</em></code>
|
||||||
|
</li></ul><div class="vspace"></div><h3>Runlevel</h3>
|
||||||
|
<p>By default, runit has 2 runlevels, <code>default</code> and <code>single</code>. You can make your own runlevels just by creating a new folder in <code>/etc/runit/runsvdir/</code> and symlinking your desired service to that runlevel.
|
||||||
|
</p><pre> ln -s /etc/runit/sv/service /etc/runit/runsvdir/<em>runlevel</em>@@
|
||||||
|
</pre><div class="vspace"></div><h3>Service directory structure</h3>
|
||||||
|
<p>This is a tree of a complete service directory structure (aka <code>/etc/runit/sv/<em>servicedir</em></code>), in some run scripts, typically only <code>run</code> will be available as usually it's the only file needed.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><pre> servicedir
|
||||||
|
├── run (755)
|
||||||
|
├── check (755)
|
||||||
|
├── conf (644)
|
||||||
|
├── finish (755)
|
||||||
|
└── log (directory)
|
||||||
|
├── config (644)
|
||||||
|
└── run (755)
|
||||||
|
</pre><p class="vspace">A runit (or any daemontools-compatible) run script service directory usually contains only one executable file, <code>run</code>, which runs process in the <strong>foreground</strong>. Processes that run in the background cannot be supervised by runit.
|
||||||
|
</p>
|
||||||
|
<p class="vspace">If a service directory contains another directory named <code>log</code>, the output of the <code>run</code> process in the service directory will be piped to the input of the <code>run</code> process in the log directory. If the log service uses <code>svlogd</code>, it may be configured by using the file <code>config</code>. How <code>svlogd</code> can be configured is explained in the <code>svlogd(1)</code> manpage.
|
||||||
|
</p>
|
||||||
|
<p class="vspace">A run script may also contain executables like <code>finish</code> and <code>check</code>. <code>finish</code> will be executed when a service is stopped, and <code>check</code> will be executed (if exists) by <code>sv check</code> or <code>sv status</code>.
|
||||||
|
</p>
|
||||||
|
<p class="vspace">A run script may also contain a <code>conf</code> file (which is not executable) that modifies the variables available to the script.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h3>Service dependencies</h3>
|
||||||
|
<p>Some services may depend on other services. For example, <code>NetworkManager</code> depends on <code>dbus</code>. To ensure that required dependencies are satisfied, check the service's <code>run</code> file. For example, for NetworkManager:
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><pre> # /etc/runit/sv/NetworkManager/run
|
||||||
|
sv check dbus >/dev/null || exit 1
|
||||||
|
</pre><p class="vspace">This means you have to enable <code>dbus</code> for NetworkManager to start.
|
||||||
|
</p>
|
||||||
|
<div class="vspace"></div><h3>See also</h3>
|
||||||
|
<ul><li><a class="urllink" href="http://smarden.org/runit" rel="nofollow">http://smarden.org/runit</a> - Official runit documentation
|
||||||
|
</li><li><a class="urllink" href="https://voidlinux.eu/wiki/Runit" rel="nofollow">https://voidlinux.eu/wiki/Runit</a> - Void Linux wiki on runit
|
||||||
|
</li></ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="printfoot">
|
||||||
|
<div class="from">Retrieved from https://wiki.artixlinux.org/Main/Runit</div>
|
||||||
|
<div class="lastmod">Page last modified on June 21, 2018, at 05:32 AM</div></div>
|
||||||
|
<!--HTMLFooter-->
|
||||||
|
|
||||||
|
|
||||||
|
</body><div id="simple-translate-button"></div><div id="simple-translate-panel"><p>...</p></div></html>
|
6
base/live-overlay/etc/skel/Desktop/README
Normal file
6
base/live-overlay/etc/skel/Desktop/README
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Username: artix
|
||||||
|
Password: artix
|
||||||
|
|
||||||
|
root password: artix
|
||||||
|
|
||||||
|
The graphical installer is in Menu -> System Tools -> Install System
|
@@ -2,24 +2,24 @@
|
|||||||
|
|
||||||
# default displaymanager: none
|
# default displaymanager: none
|
||||||
# supported: lightdm, sddm, gdm, lxdm, mdm
|
# supported: lightdm, sddm, gdm, lxdm, mdm
|
||||||
# DISPLAYMANAGER="none"
|
# displaymanager="none"
|
||||||
|
|
||||||
# Set to false to disable autologin in the livecd
|
# Set to false to disable autologin in the livecd
|
||||||
AUTOLOGIN="false"
|
autologin="false"
|
||||||
|
|
||||||
# start services
|
# start services
|
||||||
SERVICES=('acpid' 'bluetoothd' 'cronie' 'cupsd' 'syslog-ng' 'connmand')
|
# services=('acpid' 'bluetooth' 'cronie' 'cupsd' 'syslog-ng' 'NetworkManager')
|
||||||
|
|
||||||
# default group membership
|
# default group membership
|
||||||
# ADDGROUPS="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
||||||
|
|
||||||
################# live-session #################
|
################# live-session #################
|
||||||
|
|
||||||
# default value
|
# default value
|
||||||
# HOST_NANE="artix"
|
# hostname="artix"
|
||||||
|
|
||||||
# default value
|
# default value
|
||||||
# USER_NAME="artix"
|
# username="artix"
|
||||||
|
|
||||||
# default value
|
# default value
|
||||||
# PASSWORD="artix"
|
# password="artix"
|
||||||
|
@@ -1,20 +0,0 @@
|
|||||||
[?25l[?7l[0m[36m[1m '
|
|
||||||
'o'
|
|
||||||
'ooo'
|
|
||||||
'ooxoo'
|
|
||||||
'ooxxxoo'
|
|
||||||
'oookkxxoo'
|
|
||||||
'oiioxkkxxoo'
|
|
||||||
':;:iiiioxxxoo'
|
|
||||||
`'.;::ioxxoo'
|
|
||||||
'-. `':;jiooo'
|
|
||||||
'oooio-.. `'i:io'
|
|
||||||
'ooooxxxxoio:,. `'-;'
|
|
||||||
'ooooxxxxxkkxoooIi:-. `'
|
|
||||||
'ooooxxxxxkkkkxoiiiiiji'
|
|
||||||
'ooooxxxxxkxxoiiii:'` .i'
|
|
||||||
'ooooxxxxxoi:::'` .;ioxo'
|
|
||||||
'ooooxooi::'` .:iiixkxxo'
|
|
||||||
'ooooi:'` `'';ioxxo'
|
|
||||||
'i:'` '':io'
|
|
||||||
'` `'[0m
|
|
@@ -1,8 +0,0 @@
|
|||||||
/* Allow members of the wheel group to execute any actions
|
|
||||||
* without password authentication, similar to "sudo NOPASSWD:"
|
|
||||||
*/
|
|
||||||
polkit.addRule(function(action, subject) {
|
|
||||||
if (subject.isInGroup("wheel")) {
|
|
||||||
return polkit.Result.YES;
|
|
||||||
}
|
|
||||||
});
|
|
@@ -1 +0,0 @@
|
|||||||
root ALL=(ALL) ALL
|
|
101
buildISOs.sh
101
buildISOs.sh
@@ -1,101 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Automated ISO build script
|
|
||||||
# 2019-2020, nous
|
|
||||||
|
|
||||||
source /usr/share/makepkg/util/message.sh
|
|
||||||
colorize
|
|
||||||
|
|
||||||
WORKSPACE=/home/$USER/artools-workspace
|
|
||||||
PROFILES=${WORKSPACE}/iso-profiles
|
|
||||||
REPO=/srv/iso/testing-iso
|
|
||||||
CWD=`pwd`
|
|
||||||
|
|
||||||
cd $PROFILES
|
|
||||||
all_profiles=($(find -maxdepth 1 -type d | sed 's|.*/||'| egrep -v "\.|common|linexa|git|community$" | sort))
|
|
||||||
all_inits=('openrc' 'runit' 's6')
|
|
||||||
|
|
||||||
usage() {
|
|
||||||
echo
|
|
||||||
echo -n "${BOLD}Usage: "
|
|
||||||
echo "$0 [-b stable|gremlins] -p <profile>[,profile,...]|[all] -i <init>[,init,...]|[all]${ALL_OFF}"
|
|
||||||
echo
|
|
||||||
echo -n "All profiles, all inits: "
|
|
||||||
echo "$0 -p all -i all"
|
|
||||||
echo
|
|
||||||
echo "Available branches: ${BOLD}stable (default, if omitted), gremlins${ALL_OFF}"
|
|
||||||
echo "Available profiles: ${GREEN}${all_profiles[@]}${ALL_OFF}"
|
|
||||||
echo "Available inits: ${CYAN}${all_inits[@]} ${ALL_OFF}"
|
|
||||||
echo
|
|
||||||
echo "Example: $0 -p base,lxqt,lxde -i openrc,runit"
|
|
||||||
echo " $0 -b gremlins -p base -i s6"
|
|
||||||
echo
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
timestamp() { date +"%Y/%m/%d-%H:%M:%S"; }
|
|
||||||
|
|
||||||
[[ $# -eq 0 ]] && usage
|
|
||||||
|
|
||||||
while getopts "b:p:i:" option; do
|
|
||||||
case $option in
|
|
||||||
b)
|
|
||||||
_branch=$OPTARG
|
|
||||||
[[ ${_branch} =~ (^$|stable|gremlins) ]] || { echo; echo "${RED}No valid branch selected!${ALL_OFF}"; echo; usage; }
|
|
||||||
[[ ${_branch} == 'stable' || ${_branch} == '' ]] && { _branch='stable'; branch=''; }
|
|
||||||
[[ ${_branch} == 'gremlins' ]] && branch='-gremlins'
|
|
||||||
;;
|
|
||||||
p)
|
|
||||||
_profile=$OPTARG
|
|
||||||
for p in ${all_profiles[@]}; do
|
|
||||||
[[ ${_profile} =~ $p ]] && profiles+=($p)
|
|
||||||
done
|
|
||||||
[[ ${_profile} == all ]] && profiles=(${all_profiles[@]})
|
|
||||||
;;
|
|
||||||
i)
|
|
||||||
_init=$OPTARG
|
|
||||||
for i in ${all_inits[@]}; do
|
|
||||||
[[ ${_init} =~ $i ]] && inits+=($i)
|
|
||||||
done
|
|
||||||
[[ ${_init} == all ]] && inits=(${all_inits[@]})
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
[[ $branch ]] || { _branch='stable'; branch=''; }
|
|
||||||
[[ ${#profiles[@]} -eq 0 ]] && { echo; echo "${RED}No valid profiles selected!${ALL_OFF}"; echo; usage; }
|
|
||||||
[[ ${#inits[@]} -eq 0 ]] && { echo; echo "${RED}No valid inits selected!"${ALL_OFF}; echo; usage; }
|
|
||||||
|
|
||||||
echo "Building ISO(s):"
|
|
||||||
echo " branch ${BOLD}${_branch}${ALL_OFF}"
|
|
||||||
echo " profiles ${GREEN}${profiles[@]}${ALL_OFF}"
|
|
||||||
echo " inits ${CYAN}${inits[@]}${ALL_OFF}"
|
|
||||||
|
|
||||||
mkdir -p ${PROFILES}
|
|
||||||
|
|
||||||
cd $WORKSPACE
|
|
||||||
if [[ -d $PROFILES ]]; then
|
|
||||||
cd $PROFILES
|
|
||||||
git pull
|
|
||||||
else
|
|
||||||
git clone https://gitea.artixlinux.org/artix/iso-profiles.git
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $PROFILES && git checkout master
|
|
||||||
echo "#################################" >>$CWD/ISO_build.log
|
|
||||||
for profile in ${profiles[@]}; do
|
|
||||||
for init in ${inits[@]}; do
|
|
||||||
[[ $init == 'openrc' ]] && cp ${WORKSPACE}/rc.conf ${PROFILES}/$profile/root-overlay/etc/
|
|
||||||
stamp=$(timestamp)
|
|
||||||
echo "$stamp == Begin building ${_branch} $profile ISO with $init" >> $CWD/ISO_build.log
|
|
||||||
nice -n 20 buildiso${branch} -p $profile -i $init
|
|
||||||
res=$?
|
|
||||||
rm -f ${PROFILES}/$profile/root-overlay/etc/rc.conf
|
|
||||||
stamp=$(timestamp)
|
|
||||||
sudo rm -fr /var/lib/artools/buildiso/$profile &
|
|
||||||
[[ $res == 0 ]] && { echo "$stamp == ${GREEN}Finished building ${_branch} $profile ISO with $init${ALL_OFF}" >> $CWD/ISO_build.log; } \
|
|
||||||
|| { echo "$stamp == ${RED}Failed building ${_branch} $profile ISO with $init${ALL_OFF}" >> $CWD/ISO_build.log; continue; }
|
|
||||||
mv -v ${WORKSPACE}/iso/$profile/artix-$profile-$init-*.iso ${REPO}/
|
|
||||||
cd $REPO && { sha256sum artix-*.iso > ${REPO}/sha256sums & }
|
|
||||||
done
|
|
||||||
done
|
|
@@ -1,23 +0,0 @@
|
|||||||
mkinitcpio-nfs-utils
|
|
||||||
squashfs-tools
|
|
||||||
nbd
|
|
||||||
|
|
||||||
@openrc artix-live-openrc
|
|
||||||
@runit artix-live-runit
|
|
||||||
@s6 artix-live-s6
|
|
||||||
|
|
||||||
calamares-branding
|
|
||||||
gparted
|
|
||||||
|
|
||||||
artix-grub-live
|
|
||||||
artix-grub-theme
|
|
||||||
|
|
||||||
virtualbox-guest-modules-artix
|
|
||||||
virtualbox-guest-utils
|
|
||||||
#open-vm-tools
|
|
||||||
broadcom-wl
|
|
||||||
|
|
||||||
intel-ucode
|
|
||||||
amd-ucode
|
|
||||||
artix-docs
|
|
||||||
hexchat
|
|
@@ -1,183 +0,0 @@
|
|||||||
base
|
|
||||||
@openrc elogind-openrc
|
|
||||||
@runit elogind-runit
|
|
||||||
@s6 elogind-s6
|
|
||||||
acpi
|
|
||||||
b43-fwcutter
|
|
||||||
btrfs-progs
|
|
||||||
crda
|
|
||||||
dhclient
|
|
||||||
diffutils
|
|
||||||
dmraid
|
|
||||||
dnsmasq
|
|
||||||
dosfstools
|
|
||||||
e2fsprogs
|
|
||||||
ecryptfs-utils
|
|
||||||
exfat-utils
|
|
||||||
f2fs-tools
|
|
||||||
grub
|
|
||||||
htop
|
|
||||||
inetutils
|
|
||||||
iptables
|
|
||||||
ipw2100-fw
|
|
||||||
ipw2200-fw
|
|
||||||
jfsutils
|
|
||||||
linux
|
|
||||||
linux-headers
|
|
||||||
linux-firmware
|
|
||||||
logrotate
|
|
||||||
lsb-release
|
|
||||||
man-db
|
|
||||||
man-pages
|
|
||||||
memtest86+
|
|
||||||
mkinitcpio
|
|
||||||
mkinitcpio-openswap
|
|
||||||
nano
|
|
||||||
net-tools
|
|
||||||
ntfs-3g
|
|
||||||
@openrc acpid-openrc
|
|
||||||
@openrc cronie-openrc
|
|
||||||
@openrc cryptsetup-openrc
|
|
||||||
@openrc dhcpcd-openrc
|
|
||||||
@openrc haveged-openrc
|
|
||||||
@openrc lvm2-openrc
|
|
||||||
@openrc mdadm-openrc
|
|
||||||
@openrc nfs-utils-openrc
|
|
||||||
@openrc rsync-openrc
|
|
||||||
@openrc openssh-openrc
|
|
||||||
@openrc wpa_supplicant-openrc
|
|
||||||
@openrc syslog-ng-openrc
|
|
||||||
@runit acpid-runit
|
|
||||||
@runit cronie-runit
|
|
||||||
@runit cryptsetup-runit
|
|
||||||
@runit dhcpcd-runit
|
|
||||||
@runit haveged-runit
|
|
||||||
@runit lvm2-runit
|
|
||||||
@runit mdadm-runit
|
|
||||||
@runit nfs-utils-runit
|
|
||||||
@runit rsync-runit
|
|
||||||
@runit openssh-runit
|
|
||||||
@runit wpa_supplicant-runit
|
|
||||||
@runit syslog-ng-runit
|
|
||||||
@s6 acpid-s6
|
|
||||||
@s6 cronie-s6
|
|
||||||
@s6 cryptsetup-s6
|
|
||||||
@s6 dhcpcd-s6
|
|
||||||
@s6 haveged-s6
|
|
||||||
@s6 lvm2-s6
|
|
||||||
@s6 mdadm-s6
|
|
||||||
@s6 nfs-utils-s6
|
|
||||||
@s6 rsync-s6
|
|
||||||
@s6 openssh-s6
|
|
||||||
@s6 wpa_supplicant-s6
|
|
||||||
@s6 syslog-ng-s6
|
|
||||||
os-prober
|
|
||||||
reiserfsprogs
|
|
||||||
s-nail
|
|
||||||
sudo
|
|
||||||
sysfsutils
|
|
||||||
texinfo
|
|
||||||
usbutils
|
|
||||||
which
|
|
||||||
efibootmgr
|
|
||||||
xfsprogs
|
|
||||||
zsh
|
|
||||||
|
|
||||||
alsa-firmware
|
|
||||||
powertop
|
|
||||||
inxi
|
|
||||||
|
|
||||||
@openrc alsa-utils-openrc
|
|
||||||
@openrc avahi-openrc
|
|
||||||
@openrc networkmanager-openrc
|
|
||||||
@openrc displaymanager-openrc
|
|
||||||
@openrc ntp-openrc
|
|
||||||
@openrc openrc-settingsd
|
|
||||||
@openrc bluez-openrc
|
|
||||||
@runit alsa-utils-runit
|
|
||||||
@runit avahi-runit
|
|
||||||
@runit bluez-runit
|
|
||||||
@runit networkmanager-runit
|
|
||||||
@runit ntp-runit
|
|
||||||
@runit lightdm-runit
|
|
||||||
@runit blocaled
|
|
||||||
@s6 blocaled
|
|
||||||
@s6 alsa-utils-s6
|
|
||||||
@s6 avahi-s6
|
|
||||||
@s6 bluez-s6
|
|
||||||
@s6 networkmanager-s6
|
|
||||||
@s6 ntp-s6
|
|
||||||
@s6 lightdm-s6
|
|
||||||
|
|
||||||
librabbitmq-c
|
|
||||||
libmongoc
|
|
||||||
|
|
||||||
terminus-font
|
|
||||||
ttf-droid
|
|
||||||
ttf-roboto
|
|
||||||
ttf-roboto-mono
|
|
||||||
ttf-inconsolata
|
|
||||||
ttf-liberation
|
|
||||||
|
|
||||||
xdg-user-dirs
|
|
||||||
xdg-utils
|
|
||||||
|
|
||||||
xorg-server
|
|
||||||
xorg-xinit
|
|
||||||
xorg-xhost
|
|
||||||
|
|
||||||
xf86-input-vmmouse
|
|
||||||
xf86-video-amdgpu
|
|
||||||
xf86-video-ati
|
|
||||||
xf86-video-dummy
|
|
||||||
xf86-video-fbdev
|
|
||||||
xf86-video-intel
|
|
||||||
xf86-video-nouveau
|
|
||||||
xf86-video-openchrome
|
|
||||||
xf86-video-sisusb
|
|
||||||
xf86-video-vesa
|
|
||||||
xf86-video-vmware
|
|
||||||
xf86-video-voodoo
|
|
||||||
# Core ISO packages end here
|
|
||||||
|
|
||||||
# Branding
|
|
||||||
artix-grub-theme
|
|
||||||
artix-dark-theme
|
|
||||||
artix-branding-base
|
|
||||||
artix-gtk-presets
|
|
||||||
artix-qt-presets
|
|
||||||
xcursor-premium
|
|
||||||
artix-sddm-theme
|
|
||||||
|
|
||||||
# Cinnamon
|
|
||||||
cinnamon
|
|
||||||
# Cinnamon extra
|
|
||||||
blueberry
|
|
||||||
eog
|
|
||||||
file-roller
|
|
||||||
gnome-calculator
|
|
||||||
gnome-disk-utility
|
|
||||||
gnome-keyring
|
|
||||||
gnome-online-accounts
|
|
||||||
gnome-screenshot
|
|
||||||
gnome-system-log
|
|
||||||
gnome-system-monitor
|
|
||||||
gnome-terminal
|
|
||||||
nemo-fileroller
|
|
||||||
nemo-preview
|
|
||||||
nemo-seahorse
|
|
||||||
nemo-share
|
|
||||||
xcursor-vanilla-dmz
|
|
||||||
|
|
||||||
# Basic usability apps
|
|
||||||
leafpad
|
|
||||||
midori
|
|
||||||
atril
|
|
||||||
lightdm-gtk-greeter
|
|
||||||
light-locker
|
|
||||||
mpv
|
|
||||||
ffmpegthumbnailer
|
|
||||||
ffmpegthumbs
|
|
||||||
raw-thumbnailer
|
|
||||||
qt5-imageformats
|
|
||||||
gvfs-mtp
|
|
@@ -1 +0,0 @@
|
|||||||
../common/live-overlay
|
|
@@ -1,25 +0,0 @@
|
|||||||
################ install ################
|
|
||||||
|
|
||||||
# default displaymanager: none
|
|
||||||
# supported: lightdm, sddm, gdm, lxdm, mdm
|
|
||||||
DISPLAYMANAGER="lightdm"
|
|
||||||
|
|
||||||
# Set to false to disable autologin in the livecd
|
|
||||||
AUTOLOGIN="true"
|
|
||||||
|
|
||||||
# start services
|
|
||||||
SERVICES=('acpid' 'bluetoothd' 'cronie' 'cupsd' 'syslog-ng' 'NetworkManager')
|
|
||||||
|
|
||||||
# default group membership
|
|
||||||
ADDGROUPS="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
|
||||||
|
|
||||||
################# live-session #################
|
|
||||||
|
|
||||||
# unset defaults to given value
|
|
||||||
# HOST_NAME="artix"
|
|
||||||
|
|
||||||
# unset defaults to given value
|
|
||||||
# USER_NAME="artix"
|
|
||||||
|
|
||||||
# unset defaults to given value
|
|
||||||
# PASSWORD="artix"
|
|
@@ -1 +0,0 @@
|
|||||||
../../../common/root-overlay/etc/default
|
|
@@ -1 +0,0 @@
|
|||||||
../../../common/root-overlay/etc/environment
|
|
@@ -1 +0,0 @@
|
|||||||
../../../common/root-overlay/etc/hosts
|
|
@@ -1 +0,0 @@
|
|||||||
../../../../common/root-overlay/etc/lightdm/lightdm-gtk-greeter.conf
|
|
@@ -1,169 +0,0 @@
|
|||||||
#
|
|
||||||
# General configuration
|
|
||||||
#
|
|
||||||
# start-default-seat = True to always start one seat if none are defined in the configuration
|
|
||||||
# greeter-user = User to run greeter as
|
|
||||||
# minimum-display-number = Minimum display number to use for X servers
|
|
||||||
# minimum-vt = First VT to run displays on
|
|
||||||
# lock-memory = True to prevent memory from being paged to disk
|
|
||||||
# user-authority-in-system-dir = True if session authority should be in the system location
|
|
||||||
# guest-account-script = Script to be run to setup guest account
|
|
||||||
# logind-check-graphical = True to on start seats that are marked as graphical by logind
|
|
||||||
# log-directory = Directory to log information to
|
|
||||||
# run-directory = Directory to put running state in
|
|
||||||
# cache-directory = Directory to cache to
|
|
||||||
# sessions-directory = Directory to find sessions
|
|
||||||
# remote-sessions-directory = Directory to find remote sessions
|
|
||||||
# greeters-directory = Directory to find greeters
|
|
||||||
# backup-logs = True to move add a .old suffix to old log files when opening new ones
|
|
||||||
# dbus-service = True if LightDM provides a D-Bus service to control it
|
|
||||||
#
|
|
||||||
[LightDM]
|
|
||||||
#start-default-seat=true
|
|
||||||
#greeter-user=lightdm
|
|
||||||
#minimum-display-number=0
|
|
||||||
#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799
|
|
||||||
#lock-memory=true
|
|
||||||
#user-authority-in-system-dir=false
|
|
||||||
#guest-account-script=guest-account
|
|
||||||
#logind-check-graphical=false
|
|
||||||
#log-directory=/var/log/lightdm
|
|
||||||
run-directory=/run/lightdm
|
|
||||||
#cache-directory=/var/cache/lightdm
|
|
||||||
#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions
|
|
||||||
#remote-sessions-directory=/usr/share/lightdm/remote-sessions
|
|
||||||
#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters
|
|
||||||
#backup-logs=true
|
|
||||||
#dbus-service=true
|
|
||||||
|
|
||||||
#
|
|
||||||
# Seat configuration
|
|
||||||
#
|
|
||||||
# Seat configuration is matched against the seat name glob in the section, for example:
|
|
||||||
# [Seat:*] matches all seats and is applied first.
|
|
||||||
# [Seat:seat0] matches the seat named "seat0".
|
|
||||||
# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client".
|
|
||||||
#
|
|
||||||
# type = Seat type (local, xremote, unity)
|
|
||||||
# pam-service = PAM service to use for login
|
|
||||||
# pam-autologin-service = PAM service to use for autologin
|
|
||||||
# pam-greeter-service = PAM service to use for greeters
|
|
||||||
# xserver-backend = X backend to use (mir)
|
|
||||||
# xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
|
|
||||||
# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option)
|
|
||||||
# xserver-config = Config file to pass to X server
|
|
||||||
# xserver-layout = Layout to pass to X server
|
|
||||||
# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
|
|
||||||
# xserver-share = True if the X server is shared for both greeter and session
|
|
||||||
# xserver-hostname = Hostname of X server (only for type=xremote)
|
|
||||||
# xserver-display-number = Display number of X server (only for type=xremote)
|
|
||||||
# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
|
|
||||||
# xdmcp-port = XDMCP UDP/IP port to communicate on
|
|
||||||
# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
|
|
||||||
# unity-compositor-command = Unity compositor command to run (can also contain arguments e.g. unity-system-compositor -special-option)
|
|
||||||
# unity-compositor-timeout = Number of seconds to wait for compositor to start
|
|
||||||
# greeter-session = Session to load for greeter
|
|
||||||
# greeter-hide-users = True to hide the user list
|
|
||||||
# greeter-allow-guest = True if the greeter should show a guest login option
|
|
||||||
# greeter-show-manual-login = True if the greeter should offer a manual login option
|
|
||||||
# greeter-show-remote-login = True if the greeter should offer a remote login option
|
|
||||||
# user-session = Session to load for users
|
|
||||||
# allow-user-switching = True if allowed to switch users
|
|
||||||
# allow-guest = True if guest login is allowed
|
|
||||||
# guest-session = Session to load for guests (overrides user-session)
|
|
||||||
# session-wrapper = Wrapper script to run session with
|
|
||||||
# greeter-wrapper = Wrapper script to run greeter with
|
|
||||||
# guest-wrapper = Wrapper script to run guest sessions with
|
|
||||||
# display-setup-script = Script to run when starting a greeter session (runs as root)
|
|
||||||
# display-stopped-script = Script to run after stopping the display server (runs as root)
|
|
||||||
# greeter-setup-script = Script to run when starting a greeter (runs as root)
|
|
||||||
# session-setup-script = Script to run when starting a user session (runs as root)
|
|
||||||
# session-cleanup-script = Script to run when quitting a user session (runs as root)
|
|
||||||
# autologin-guest = True to log in as guest by default
|
|
||||||
# autologin-user = User to log in with by default (overrides autologin-guest)
|
|
||||||
# autologin-user-timeout = Number of seconds to wait before loading default user
|
|
||||||
# autologin-session = Session to load for automatic login (overrides user-session)
|
|
||||||
# autologin-in-background = True if autologin session should not be immediately activated
|
|
||||||
# exit-on-failure = True if the daemon should exit if this seat fails
|
|
||||||
#
|
|
||||||
[Seat:*]
|
|
||||||
#type=local
|
|
||||||
#pam-service=lightdm
|
|
||||||
#pam-autologin-service=lightdm-autologin
|
|
||||||
#pam-greeter-service=lightdm-greeter
|
|
||||||
#xserver-backend=
|
|
||||||
#xserver-command=X
|
|
||||||
#xmir-command=Xmir
|
|
||||||
#xserver-config=
|
|
||||||
#xserver-layout=
|
|
||||||
#xserver-allow-tcp=false
|
|
||||||
#xserver-share=true
|
|
||||||
#xserver-hostname=
|
|
||||||
#xserver-display-number=
|
|
||||||
#xdmcp-manager=
|
|
||||||
#xdmcp-port=177
|
|
||||||
#xdmcp-key=
|
|
||||||
#unity-compositor-command=unity-system-compositor
|
|
||||||
#unity-compositor-timeout=60
|
|
||||||
greeter-session=lightdm-gtk-greeter
|
|
||||||
#greeter-hide-users=false
|
|
||||||
#greeter-allow-guest=true
|
|
||||||
#greeter-show-manual-login=false
|
|
||||||
#greeter-show-remote-login=true
|
|
||||||
#user-session=default
|
|
||||||
#allow-user-switching=true
|
|
||||||
#allow-guest=true
|
|
||||||
#guest-session=
|
|
||||||
session-wrapper=/etc/lightdm/Xsession
|
|
||||||
#greeter-wrapper=
|
|
||||||
#guest-wrapper=
|
|
||||||
#display-setup-script=
|
|
||||||
#display-stopped-script=
|
|
||||||
#greeter-setup-script=
|
|
||||||
#session-setup-script=
|
|
||||||
#session-cleanup-script=
|
|
||||||
#autologin-guest=false
|
|
||||||
autologin-user=artix
|
|
||||||
#autologin-user-timeout=0
|
|
||||||
#autologin-in-background=false
|
|
||||||
autologin-session=cinnamon
|
|
||||||
#exit-on-failure=false
|
|
||||||
|
|
||||||
#
|
|
||||||
# XDMCP Server configuration
|
|
||||||
#
|
|
||||||
# enabled = True if XDMCP connections should be allowed
|
|
||||||
# port = UDP/IP port to listen for connections on
|
|
||||||
# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present)
|
|
||||||
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
|
|
||||||
# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset)
|
|
||||||
#
|
|
||||||
# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
|
|
||||||
# it can be a word and the first 7 characters are used as the key.
|
|
||||||
#
|
|
||||||
[XDMCPServer]
|
|
||||||
#enabled=false
|
|
||||||
#port=177
|
|
||||||
#listen-address=
|
|
||||||
#key=
|
|
||||||
#hostname=
|
|
||||||
|
|
||||||
#
|
|
||||||
# VNC Server configuration
|
|
||||||
#
|
|
||||||
# enabled = True if VNC connections should be allowed
|
|
||||||
# command = Command to run Xvnc server with
|
|
||||||
# port = TCP/IP port to listen for connections on
|
|
||||||
# listen-address = Host/address to listen for VNC connections (use all addresses if not present)
|
|
||||||
# width = Width of display to use
|
|
||||||
# height = Height of display to use
|
|
||||||
# depth = Color depth of display to use
|
|
||||||
#
|
|
||||||
[VNCServer]
|
|
||||||
#enabled=false
|
|
||||||
#command=Xvnc
|
|
||||||
#port=5900
|
|
||||||
#listen-address=
|
|
||||||
#width=1024
|
|
||||||
#height=768
|
|
||||||
#depth=8
|
|
@@ -1 +0,0 @@
|
|||||||
../../common/root-overlay/usr
|
|
@@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
efiBootLoader: "grub"
|
|
||||||
kernel: "/vmlinuz-linux-x86_64"
|
|
||||||
img: "/initramfs-linux-x86_64.img"
|
|
||||||
fallback: "/initramfs-linux-x86_64-fallback.img"
|
|
||||||
timeout: "10"
|
|
||||||
kernelLine: ", with linux"
|
|
||||||
fallbackKernelLine: ", with linux (fallback initramfs)"
|
|
||||||
grubInstall: "grub-install"
|
|
||||||
grubMkconfig: "grub-mkconfig"
|
|
||||||
grubCfg: "/boot/grub/grub.cfg"
|
|
||||||
#efiBootloaderId: "dirname"
|
|
@@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
displaymanagers:
|
|
||||||
- lightdm
|
|
||||||
- gdm
|
|
||||||
- mdm
|
|
||||||
- sddm
|
|
||||||
- lxdm
|
|
||||||
- slim
|
|
||||||
|
|
||||||
basicSetup: false
|
|
@@ -1,4 +0,0 @@
|
|||||||
---
|
|
||||||
restartNowEnabled: true
|
|
||||||
restartNowChecked: false
|
|
||||||
restartNowCommand: "loginctl reboot"
|
|
@@ -1,2 +0,0 @@
|
|||||||
---
|
|
||||||
kernel: linux
|
|
@@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
# region: "America"
|
|
||||||
# zone: "New_York"
|
|
||||||
|
|
||||||
localeGenPath: /etc/locale.gen
|
|
||||||
|
|
||||||
geoip:
|
|
||||||
style: "json"
|
|
||||||
url: "https://geoip.kde.org/v1/calamares"
|
|
||||||
selector: ""
|
|
@@ -1,4 +0,0 @@
|
|||||||
---
|
|
||||||
systemd: false
|
|
||||||
dbus: true
|
|
||||||
symlink: true
|
|
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
srcLog: "/root/.cache/Calamares/Calamares.log"
|
|
||||||
destLog: "/var/log/Calamares.log"
|
|
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
showSupportUrl: true
|
|
||||||
showKnownIssuesUrl: true
|
|
||||||
showReleaseNotesUrl: true
|
|
||||||
|
|
||||||
requirements:
|
|
||||||
requiredStorage: 5.5
|
|
||||||
requiredRam: 1.0
|
|
||||||
internetCheckUrl: https://artixlinux.org
|
|
||||||
check:
|
|
||||||
- storage
|
|
||||||
- ram
|
|
||||||
- power
|
|
||||||
- internet
|
|
||||||
- root
|
|
||||||
required:
|
|
||||||
- storage
|
|
||||||
- ram
|
|
||||||
- root
|
|
||||||
|
|
||||||
# geoip:
|
|
||||||
# style: "none"
|
|
||||||
# url: "https://geoip.kde.org/v1/ubiquity" # extended XML format
|
|
||||||
# selector: "CountryCode" # blank uses default, which is wrong
|
|
||||||
|
|
||||||
# languageIcon: set-language
|
|
@@ -1,45 +0,0 @@
|
|||||||
---
|
|
||||||
modules-search: [ local ]
|
|
||||||
|
|
||||||
sequence:
|
|
||||||
- show:
|
|
||||||
- welcome
|
|
||||||
- locale
|
|
||||||
- keyboard
|
|
||||||
- partition
|
|
||||||
- users
|
|
||||||
- summary
|
|
||||||
- exec:
|
|
||||||
- partition
|
|
||||||
- mount
|
|
||||||
- unpackfs
|
|
||||||
- machineid
|
|
||||||
- fstab
|
|
||||||
- locale
|
|
||||||
- keyboard
|
|
||||||
- localecfg
|
|
||||||
- luksopenswaphookcfg
|
|
||||||
- luksbootkeyfile
|
|
||||||
- initcpiocfg
|
|
||||||
- initcpio
|
|
||||||
- users
|
|
||||||
- displaymanager
|
|
||||||
- networkcfg
|
|
||||||
- hwclock
|
|
||||||
- services-openrc
|
|
||||||
- grubcfg
|
|
||||||
- bootloader
|
|
||||||
- postcfg
|
|
||||||
- umount
|
|
||||||
- show:
|
|
||||||
- finished
|
|
||||||
|
|
||||||
branding: artix
|
|
||||||
|
|
||||||
prompt-install: false
|
|
||||||
|
|
||||||
dont-chroot: false
|
|
||||||
|
|
||||||
disable-cancel: false
|
|
||||||
|
|
||||||
disable-cancel-during-exec: false
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/default
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/fstab
|
|
@@ -1,16 +0,0 @@
|
|||||||
#!/usr/bin/openrc-run
|
|
||||||
# Copyright 2014 Aaditya Bagga (aaditya_gnulinux@zoho.com)
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
description="LiveMedia Config Script"
|
|
||||||
|
|
||||||
depend() {
|
|
||||||
need localmount
|
|
||||||
before xdm-setup
|
|
||||||
}
|
|
||||||
|
|
||||||
start() {
|
|
||||||
ebegin "Starting artix live script"
|
|
||||||
/usr/bin/artix-live
|
|
||||||
eend $?
|
|
||||||
}
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/issue
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/issue.live
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/pam.d
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/polkit-1
|
|
@@ -1,7 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Exec=chmod +x "~/Desktop/calamares.desktop"
|
|
||||||
Name=Make the installer on the desktop executable
|
|
||||||
StartupNotify=false
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
Name[en_US]=make-installer-executable.desktop
|
|
@@ -1,205 +0,0 @@
|
|||||||
#!/usr/bin/env xdg-open
|
|
||||||
|
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Version=1.0
|
|
||||||
Name=Install Artix
|
|
||||||
GenericName=System Installer
|
|
||||||
Keywords=calamares;system;installer;
|
|
||||||
TryExec=calamares
|
|
||||||
Exec=pkexec env DISPLAY=:0 XAUTHORITY=/home/artix/.Xauthority QT_QPA_PLATFORMTHEME=gtk2 calamares
|
|
||||||
Comment=Calamares — System Installer
|
|
||||||
Icon=artixlinux-logo
|
|
||||||
Terminal=false
|
|
||||||
StartupNotify=true
|
|
||||||
Categories=Qt;System;
|
|
||||||
X-AppStream-Ignore=true
|
|
||||||
|
|
||||||
Name[ar]=تثبيت النظام
|
|
||||||
Icon[ar]=كالامارس
|
|
||||||
GenericName[ar]=مثبت النظام
|
|
||||||
Comment[ar]=كالامارس - مثبت النظام
|
|
||||||
Name[be]=Усталяваць сістэму
|
|
||||||
Icon[be]=calamares
|
|
||||||
GenericName[be]=Усталёўшчык сістэмы
|
|
||||||
Comment[be]=Calamares — усталёўшчык сістэмы
|
|
||||||
Name[bg]=Инсталирай системата
|
|
||||||
Icon[bg]=calamares
|
|
||||||
GenericName[bg]=Системен Инсталатор
|
|
||||||
Comment[bg]=Calamares — Системен Инсталатор
|
|
||||||
Name[ca]=Instal·la el sistema
|
|
||||||
Icon[ca]=calamares
|
|
||||||
GenericName[ca]=Instal·lador de sistema
|
|
||||||
Comment[ca]=Calamares — Instal·lador de sistema
|
|
||||||
Name[da]=Installér system
|
|
||||||
Icon[da]=calamares
|
|
||||||
GenericName[da]=Systeminstallationsprogram
|
|
||||||
Comment[da]=Calamares — Systeminstallationsprogram
|
|
||||||
Name[de]=System installieren
|
|
||||||
Icon[de]=calamares
|
|
||||||
GenericName[de]=Installation des Betriebssystems
|
|
||||||
Comment[de]=Calamares - Installation des Betriebssystems
|
|
||||||
Name[el]=Εγκατάσταση συστήματος
|
|
||||||
Icon[el]=calamares
|
|
||||||
GenericName[el]=Εγκατάσταση συστήματος
|
|
||||||
Comment[el]=Calamares — Εγκατάσταση συστήματος
|
|
||||||
Name[en_GB]=Install System
|
|
||||||
Icon[en_GB]=calamares
|
|
||||||
GenericName[en_GB]=System Installer
|
|
||||||
Comment[en_GB]=Calamares — System Installer
|
|
||||||
Name[es]=Instalar Sistema
|
|
||||||
Icon[es]=calamares
|
|
||||||
GenericName[es]=Instalador del Sistema
|
|
||||||
Comment[es]=Calamares — Instalador del Sistema
|
|
||||||
Name[et]=Paigalda süsteem
|
|
||||||
Icon[et]=calamares
|
|
||||||
GenericName[et]=Süsteemipaigaldaja
|
|
||||||
Comment[et]=Calamares — süsteemipaigaldaja
|
|
||||||
Name[eu]=Sistema instalatu
|
|
||||||
Icon[eu]=calamares
|
|
||||||
GenericName[eu]=Sistema instalatzailea
|
|
||||||
Comment[eu]=Calamares - sistema instalatzailea
|
|
||||||
Name[es_PR]=Instalar el sistema
|
|
||||||
Name[fr]=Installer le système
|
|
||||||
Icon[fr]=calamares
|
|
||||||
GenericName[fr]=Installateur système
|
|
||||||
Comment[fr]=Calamares - Installateur système
|
|
||||||
Name[gl]=Instalación do Sistema
|
|
||||||
Icon[gl]=calamares
|
|
||||||
GenericName[gl]=Instalador de sistemas
|
|
||||||
Comment[gl]=Calamares — Instalador de sistemas
|
|
||||||
Name[he]=התקנת מערכת
|
|
||||||
Icon[he]=calamares
|
|
||||||
GenericName[he]=אשף התקנה
|
|
||||||
Comment[he]=Calamares - אשף התקנה
|
|
||||||
Name[hi]=सिस्टम इंस्टॉल करें
|
|
||||||
Icon[hi]=calamares
|
|
||||||
GenericName[hi]=सिस्टम इंस्टॉलर
|
|
||||||
Comment[hi]=Calamares — सिस्टम इंस्टॉलर
|
|
||||||
Name[hr]=Instaliraj sustav
|
|
||||||
Icon[hr]=calamares
|
|
||||||
GenericName[hr]=Instalacija sustava
|
|
||||||
Comment[hr]=Calamares — Instalacija sustava
|
|
||||||
Name[hu]=Rendszer telepítése
|
|
||||||
Icon[hu]=calamares
|
|
||||||
GenericName[hu]=Rendszertelepítő
|
|
||||||
Comment[hu]=Calamares – Rendszertelepítő
|
|
||||||
Name[id]=Instal Sistem
|
|
||||||
Icon[id]=calamares
|
|
||||||
GenericName[id]=Pemasang
|
|
||||||
Comment[id]=Calamares — Pemasang Sistem
|
|
||||||
Name[is]=Setja upp kerfið
|
|
||||||
Icon[is]=calamares
|
|
||||||
GenericName[is]=Kerfis uppsetning
|
|
||||||
Comment[is]=Calamares — Kerfis uppsetning
|
|
||||||
Name[cs_CZ]=Nainstalovat systém
|
|
||||||
Icon[cs_CZ]=calamares
|
|
||||||
GenericName[cs_CZ]=Instalátor systému
|
|
||||||
Comment[cs_CZ]=Calamares – instalátor operačních systémů
|
|
||||||
Name[ja]=システムをインストール
|
|
||||||
Icon[ja]=calamares
|
|
||||||
GenericName[ja]=システムインストーラー
|
|
||||||
Comment[ja]=Calamares — システムインストーラー
|
|
||||||
Name[ko]=시스템 설치
|
|
||||||
Icon[ko]=깔라마레스 (Calamares)
|
|
||||||
GenericName[ko]=시스템 설치 관리자
|
|
||||||
Comment[ko]=깔라마레스 (Calamares) — 시스템 설치 관리자
|
|
||||||
Name[lt]=Įdiegti Sistemą
|
|
||||||
Icon[lt]=calamares
|
|
||||||
GenericName[lt]=Sistemos diegimas į kompiuterį
|
|
||||||
Comment[lt]=Calamares — Sistemos diegimo programa
|
|
||||||
Name[it_IT]=Installa il sistema
|
|
||||||
Icon[it_IT]=calamares
|
|
||||||
GenericName[it_IT]=Programma d'installazione del sistema
|
|
||||||
Comment[it_IT]=Calamares — Programma d'installazione del sistema
|
|
||||||
Name[mk]=Инсталирај го системот
|
|
||||||
Icon[mk]=calamares
|
|
||||||
GenericName[mk]=Системен Инсталер
|
|
||||||
Comment[mk]=Calamares - Системен Инсталер
|
|
||||||
Name[ml]=സിസ്റ്റം ഇൻസ്റ്റാൾ ചെയ്യുക
|
|
||||||
Icon[ml]=കലാമാരേസ്
|
|
||||||
GenericName[ml]=സിസ്റ്റം ഇൻസ്റ്റാളർ
|
|
||||||
Comment[ml]=കലാമാരേസ് - സിസ്റ്റം ഇൻസ്റ്റാളർ
|
|
||||||
Name[nb]=Installer System
|
|
||||||
Icon[nb]=calamares
|
|
||||||
GenericName[nb]=Systeminstallatør
|
|
||||||
Comment[nb]=Calamares-systeminstallatør
|
|
||||||
Name[nl]=Installeer systeem
|
|
||||||
Icon[nl]=calamares
|
|
||||||
GenericName[nl]=Installatieprogramma
|
|
||||||
Comment[nl]=Calamares — Installatieprogramma
|
|
||||||
Name[pl]=Zainstaluj system
|
|
||||||
Icon[pl]=calamares
|
|
||||||
GenericName[pl]=Instalator systemu
|
|
||||||
Comment[pl]=Calamares — Instalator systemu
|
|
||||||
Name[pt_BR]=Sistema de Instalação
|
|
||||||
Icon[pt_BR]=calamares
|
|
||||||
GenericName[pt_BR]=Instalador de Sistema
|
|
||||||
Comment[pt_BR]=Calamares — Instalador de Sistema
|
|
||||||
Name[ro]=Instalează sistemul
|
|
||||||
Icon[ro]=calamares
|
|
||||||
GenericName[ro]=Instalator de sistem
|
|
||||||
Comment[ro]=Calamares — Instalator de sistem
|
|
||||||
Name[ru]=Установить систему
|
|
||||||
Icon[ru]=calamares
|
|
||||||
GenericName[ru]=Установщик системы
|
|
||||||
Comment[ru]=Calamares - Установщик системы
|
|
||||||
Name[sk]=Inštalovať systém
|
|
||||||
Icon[sk]=calamares
|
|
||||||
GenericName[sk]=Inštalátor systému
|
|
||||||
Comment[sk]=Calamares — Inštalátor systému
|
|
||||||
Name[sl]=Namesti sistem
|
|
||||||
Name[sq]=Instalo Sistemin
|
|
||||||
Icon[sq]=calamares
|
|
||||||
GenericName[sq]=Instalues Sistemi
|
|
||||||
Comment[sq]=Calamares — Instalues Sistemi
|
|
||||||
Name[fi_FI]=Asenna Järjestelmä
|
|
||||||
Icon[fi_FI]=calamares
|
|
||||||
GenericName[fi_FI]=Järjestelmän Asennusohjelma
|
|
||||||
Comment[fi_FI]=Calamares — Järjestelmän Asentaja
|
|
||||||
Name[sr@latin]=Instaliraj sistem
|
|
||||||
Name[sr]=Инсталирај систем
|
|
||||||
Icon[sr]=calamares
|
|
||||||
GenericName[sr]=Инсталатер система
|
|
||||||
Comment[sr]=Каламарес — инсталатер система
|
|
||||||
Name[sv]=Installera system
|
|
||||||
Icon[sv]=calamares
|
|
||||||
GenericName[sv]=Systeminstallerare
|
|
||||||
Comment[sv]=Calamares — Systeminstallerare
|
|
||||||
Name[th]=ติดตั้งระบบ
|
|
||||||
Name[uk]=Встановити Систему
|
|
||||||
Icon[uk]=calamares
|
|
||||||
GenericName[uk]=Встановлювач системи
|
|
||||||
Comment[uk]=Calamares - Встановлювач системи
|
|
||||||
Name[zh_CN]=安装系统
|
|
||||||
Icon[zh_CN]=calamares
|
|
||||||
GenericName[zh_CN]=系统安装程序
|
|
||||||
Comment[zh_CN]=Calamares — 系统安装程序
|
|
||||||
Name[zh_TW]=安裝系統
|
|
||||||
Icon[zh_TW]=calamares
|
|
||||||
GenericName[zh_TW]=系統安裝程式
|
|
||||||
Comment[zh_TW]=Calamares ── 系統安裝程式
|
|
||||||
Name[ast]=Instalar el sistema
|
|
||||||
Icon[ast]=calamares
|
|
||||||
GenericName[ast]=Instalador del sistema
|
|
||||||
Comment[ast]=Calamares — Instalador del sistema
|
|
||||||
Name[eo]=Instali Sistemo
|
|
||||||
Icon[eo]=calamares
|
|
||||||
GenericName[eo]=Sistema Instalilo
|
|
||||||
Comment[eo]=Calamares — Sistema Instalilo
|
|
||||||
Name[ne_NP]=सिस्टम इन्स्टल गर्नुहोस्
|
|
||||||
Icon[ne_NP]=Calamares
|
|
||||||
GenericName[ne_NP]=सिस्टम इन्स्टलर
|
|
||||||
Comment[ne_NP]=Calamares - सिस्टम इन्स्टलर
|
|
||||||
Name[es_MX]=Instalar el Sistema
|
|
||||||
Icon[es_MX]=calamares
|
|
||||||
GenericName[es_MX]=Instalador del sistema
|
|
||||||
Comment[es_MX]=Calamares - Instalador del sistema
|
|
||||||
Name[pt_PT]=Instalar Sistema
|
|
||||||
Icon[pt_PT]=calamares
|
|
||||||
GenericName[pt_PT]=Instalador de Sistema
|
|
||||||
Comment[pt_PT]=Calamares - Instalador de Sistema
|
|
||||||
Name[tr_TR]=Sistemi Yükle
|
|
||||||
Icon[tr_TR]=calamares
|
|
||||||
GenericName[tr_TR]=Sistem Yükleyici
|
|
||||||
Comment[tr_TR]=Calamares — Sistem Yükleyici
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/sudoers.d
|
|
@@ -1,203 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Version=1.0
|
|
||||||
Name=Install Artix
|
|
||||||
GenericName=System Installer
|
|
||||||
Keywords=calamares;system;installer;
|
|
||||||
TryExec=calamares
|
|
||||||
Exec=pkexec env DISPLAY=:0 XAUTHORITY=/home/artix/.Xauthority QT_QPA_PLATFORMTHEME=gtk2 calamares
|
|
||||||
Comment=Calamares — System Installer
|
|
||||||
Icon=artixlinux-logo
|
|
||||||
Terminal=false
|
|
||||||
StartupNotify=true
|
|
||||||
Categories=Qt;System;
|
|
||||||
X-AppStream-Ignore=true
|
|
||||||
|
|
||||||
Name[ar]=تثبيت النظام
|
|
||||||
Icon[ar]=كالامارس
|
|
||||||
GenericName[ar]=مثبت النظام
|
|
||||||
Comment[ar]=كالامارس - مثبت النظام
|
|
||||||
Name[be]=Усталяваць сістэму
|
|
||||||
Icon[be]=calamares
|
|
||||||
GenericName[be]=Усталёўшчык сістэмы
|
|
||||||
Comment[be]=Calamares — усталёўшчык сістэмы
|
|
||||||
Name[bg]=Инсталирай системата
|
|
||||||
Icon[bg]=calamares
|
|
||||||
GenericName[bg]=Системен Инсталатор
|
|
||||||
Comment[bg]=Calamares — Системен Инсталатор
|
|
||||||
Name[ca]=Instal·la el sistema
|
|
||||||
Icon[ca]=calamares
|
|
||||||
GenericName[ca]=Instal·lador de sistema
|
|
||||||
Comment[ca]=Calamares — Instal·lador de sistema
|
|
||||||
Name[da]=Installér system
|
|
||||||
Icon[da]=calamares
|
|
||||||
GenericName[da]=Systeminstallationsprogram
|
|
||||||
Comment[da]=Calamares — Systeminstallationsprogram
|
|
||||||
Name[de]=System installieren
|
|
||||||
Icon[de]=calamares
|
|
||||||
GenericName[de]=Installation des Betriebssystems
|
|
||||||
Comment[de]=Calamares - Installation des Betriebssystems
|
|
||||||
Name[el]=Εγκατάσταση συστήματος
|
|
||||||
Icon[el]=calamares
|
|
||||||
GenericName[el]=Εγκατάσταση συστήματος
|
|
||||||
Comment[el]=Calamares — Εγκατάσταση συστήματος
|
|
||||||
Name[en_GB]=Install System
|
|
||||||
Icon[en_GB]=calamares
|
|
||||||
GenericName[en_GB]=System Installer
|
|
||||||
Comment[en_GB]=Calamares — System Installer
|
|
||||||
Name[es]=Instalar Sistema
|
|
||||||
Icon[es]=calamares
|
|
||||||
GenericName[es]=Instalador del Sistema
|
|
||||||
Comment[es]=Calamares — Instalador del Sistema
|
|
||||||
Name[et]=Paigalda süsteem
|
|
||||||
Icon[et]=calamares
|
|
||||||
GenericName[et]=Süsteemipaigaldaja
|
|
||||||
Comment[et]=Calamares — süsteemipaigaldaja
|
|
||||||
Name[eu]=Sistema instalatu
|
|
||||||
Icon[eu]=calamares
|
|
||||||
GenericName[eu]=Sistema instalatzailea
|
|
||||||
Comment[eu]=Calamares - sistema instalatzailea
|
|
||||||
Name[es_PR]=Instalar el sistema
|
|
||||||
Name[fr]=Installer le système
|
|
||||||
Icon[fr]=calamares
|
|
||||||
GenericName[fr]=Installateur système
|
|
||||||
Comment[fr]=Calamares - Installateur système
|
|
||||||
Name[gl]=Instalación do Sistema
|
|
||||||
Icon[gl]=calamares
|
|
||||||
GenericName[gl]=Instalador de sistemas
|
|
||||||
Comment[gl]=Calamares — Instalador de sistemas
|
|
||||||
Name[he]=התקנת מערכת
|
|
||||||
Icon[he]=calamares
|
|
||||||
GenericName[he]=אשף התקנה
|
|
||||||
Comment[he]=Calamares - אשף התקנה
|
|
||||||
Name[hi]=सिस्टम इंस्टॉल करें
|
|
||||||
Icon[hi]=calamares
|
|
||||||
GenericName[hi]=सिस्टम इंस्टॉलर
|
|
||||||
Comment[hi]=Calamares — सिस्टम इंस्टॉलर
|
|
||||||
Name[hr]=Instaliraj sustav
|
|
||||||
Icon[hr]=calamares
|
|
||||||
GenericName[hr]=Instalacija sustava
|
|
||||||
Comment[hr]=Calamares — Instalacija sustava
|
|
||||||
Name[hu]=Rendszer telepítése
|
|
||||||
Icon[hu]=calamares
|
|
||||||
GenericName[hu]=Rendszertelepítő
|
|
||||||
Comment[hu]=Calamares – Rendszertelepítő
|
|
||||||
Name[id]=Instal Sistem
|
|
||||||
Icon[id]=calamares
|
|
||||||
GenericName[id]=Pemasang
|
|
||||||
Comment[id]=Calamares — Pemasang Sistem
|
|
||||||
Name[is]=Setja upp kerfið
|
|
||||||
Icon[is]=calamares
|
|
||||||
GenericName[is]=Kerfis uppsetning
|
|
||||||
Comment[is]=Calamares — Kerfis uppsetning
|
|
||||||
Name[cs_CZ]=Nainstalovat systém
|
|
||||||
Icon[cs_CZ]=calamares
|
|
||||||
GenericName[cs_CZ]=Instalátor systému
|
|
||||||
Comment[cs_CZ]=Calamares – instalátor operačních systémů
|
|
||||||
Name[ja]=システムをインストール
|
|
||||||
Icon[ja]=calamares
|
|
||||||
GenericName[ja]=システムインストーラー
|
|
||||||
Comment[ja]=Calamares — システムインストーラー
|
|
||||||
Name[ko]=시스템 설치
|
|
||||||
Icon[ko]=깔라마레스 (Calamares)
|
|
||||||
GenericName[ko]=시스템 설치 관리자
|
|
||||||
Comment[ko]=깔라마레스 (Calamares) — 시스템 설치 관리자
|
|
||||||
Name[lt]=Įdiegti Sistemą
|
|
||||||
Icon[lt]=calamares
|
|
||||||
GenericName[lt]=Sistemos diegimas į kompiuterį
|
|
||||||
Comment[lt]=Calamares — Sistemos diegimo programa
|
|
||||||
Name[it_IT]=Installa il sistema
|
|
||||||
Icon[it_IT]=calamares
|
|
||||||
GenericName[it_IT]=Programma d'installazione del sistema
|
|
||||||
Comment[it_IT]=Calamares — Programma d'installazione del sistema
|
|
||||||
Name[mk]=Инсталирај го системот
|
|
||||||
Icon[mk]=calamares
|
|
||||||
GenericName[mk]=Системен Инсталер
|
|
||||||
Comment[mk]=Calamares - Системен Инсталер
|
|
||||||
Name[ml]=സിസ്റ്റം ഇൻസ്റ്റാൾ ചെയ്യുക
|
|
||||||
Icon[ml]=കലാമാരേസ്
|
|
||||||
GenericName[ml]=സിസ്റ്റം ഇൻസ്റ്റാളർ
|
|
||||||
Comment[ml]=കലാമാരേസ് - സിസ്റ്റം ഇൻസ്റ്റാളർ
|
|
||||||
Name[nb]=Installer System
|
|
||||||
Icon[nb]=calamares
|
|
||||||
GenericName[nb]=Systeminstallatør
|
|
||||||
Comment[nb]=Calamares-systeminstallatør
|
|
||||||
Name[nl]=Installeer systeem
|
|
||||||
Icon[nl]=calamares
|
|
||||||
GenericName[nl]=Installatieprogramma
|
|
||||||
Comment[nl]=Calamares — Installatieprogramma
|
|
||||||
Name[pl]=Zainstaluj system
|
|
||||||
Icon[pl]=calamares
|
|
||||||
GenericName[pl]=Instalator systemu
|
|
||||||
Comment[pl]=Calamares — Instalator systemu
|
|
||||||
Name[pt_BR]=Sistema de Instalação
|
|
||||||
Icon[pt_BR]=calamares
|
|
||||||
GenericName[pt_BR]=Instalador de Sistema
|
|
||||||
Comment[pt_BR]=Calamares — Instalador de Sistema
|
|
||||||
Name[ro]=Instalează sistemul
|
|
||||||
Icon[ro]=calamares
|
|
||||||
GenericName[ro]=Instalator de sistem
|
|
||||||
Comment[ro]=Calamares — Instalator de sistem
|
|
||||||
Name[ru]=Установить систему
|
|
||||||
Icon[ru]=calamares
|
|
||||||
GenericName[ru]=Установщик системы
|
|
||||||
Comment[ru]=Calamares - Установщик системы
|
|
||||||
Name[sk]=Inštalovať systém
|
|
||||||
Icon[sk]=calamares
|
|
||||||
GenericName[sk]=Inštalátor systému
|
|
||||||
Comment[sk]=Calamares — Inštalátor systému
|
|
||||||
Name[sl]=Namesti sistem
|
|
||||||
Name[sq]=Instalo Sistemin
|
|
||||||
Icon[sq]=calamares
|
|
||||||
GenericName[sq]=Instalues Sistemi
|
|
||||||
Comment[sq]=Calamares — Instalues Sistemi
|
|
||||||
Name[fi_FI]=Asenna Järjestelmä
|
|
||||||
Icon[fi_FI]=calamares
|
|
||||||
GenericName[fi_FI]=Järjestelmän Asennusohjelma
|
|
||||||
Comment[fi_FI]=Calamares — Järjestelmän Asentaja
|
|
||||||
Name[sr@latin]=Instaliraj sistem
|
|
||||||
Name[sr]=Инсталирај систем
|
|
||||||
Icon[sr]=calamares
|
|
||||||
GenericName[sr]=Инсталатер система
|
|
||||||
Comment[sr]=Каламарес — инсталатер система
|
|
||||||
Name[sv]=Installera system
|
|
||||||
Icon[sv]=calamares
|
|
||||||
GenericName[sv]=Systeminstallerare
|
|
||||||
Comment[sv]=Calamares — Systeminstallerare
|
|
||||||
Name[th]=ติดตั้งระบบ
|
|
||||||
Name[uk]=Встановити Систему
|
|
||||||
Icon[uk]=calamares
|
|
||||||
GenericName[uk]=Встановлювач системи
|
|
||||||
Comment[uk]=Calamares - Встановлювач системи
|
|
||||||
Name[zh_CN]=安装系统
|
|
||||||
Icon[zh_CN]=calamares
|
|
||||||
GenericName[zh_CN]=系统安装程序
|
|
||||||
Comment[zh_CN]=Calamares — 系统安装程序
|
|
||||||
Name[zh_TW]=安裝系統
|
|
||||||
Icon[zh_TW]=calamares
|
|
||||||
GenericName[zh_TW]=系統安裝程式
|
|
||||||
Comment[zh_TW]=Calamares ── 系統安裝程式
|
|
||||||
Name[ast]=Instalar el sistema
|
|
||||||
Icon[ast]=calamares
|
|
||||||
GenericName[ast]=Instalador del sistema
|
|
||||||
Comment[ast]=Calamares — Instalador del sistema
|
|
||||||
Name[eo]=Instali Sistemo
|
|
||||||
Icon[eo]=calamares
|
|
||||||
GenericName[eo]=Sistema Instalilo
|
|
||||||
Comment[eo]=Calamares — Sistema Instalilo
|
|
||||||
Name[ne_NP]=सिस्टम इन्स्टल गर्नुहोस्
|
|
||||||
Icon[ne_NP]=Calamares
|
|
||||||
GenericName[ne_NP]=सिस्टम इन्स्टलर
|
|
||||||
Comment[ne_NP]=Calamares - सिस्टम इन्स्टलर
|
|
||||||
Name[es_MX]=Instalar el Sistema
|
|
||||||
Icon[es_MX]=calamares
|
|
||||||
GenericName[es_MX]=Instalador del sistema
|
|
||||||
Comment[es_MX]=Calamares - Instalador del sistema
|
|
||||||
Name[pt_PT]=Instalar Sistema
|
|
||||||
Icon[pt_PT]=calamares
|
|
||||||
GenericName[pt_PT]=Instalador de Sistema
|
|
||||||
Comment[pt_PT]=Calamares - Instalador de Sistema
|
|
||||||
Name[tr_TR]=Sistemi Yükle
|
|
||||||
Icon[tr_TR]=calamares
|
|
||||||
GenericName[tr_TR]=Sistem Yükleyici
|
|
||||||
Comment[tr_TR]=Calamares — Sistem Yükleyici
|
|
@@ -1 +0,0 @@
|
|||||||
../../../base/root-overlay/etc/default
|
|
@@ -1,2 +0,0 @@
|
|||||||
QT_QPA_PLATFORMTHEME=gtk2
|
|
||||||
QT_STYLE_OVERRIDE=gtk
|
|
@@ -1 +0,0 @@
|
|||||||
127.0.0.1 localhost artix
|
|
@@ -1,12 +0,0 @@
|
|||||||
[greeter]
|
|
||||||
clock-format = %a %d %B %Y, %H:%M:%S
|
|
||||||
position = 30%,center
|
|
||||||
font-name = Roboto Sans 12
|
|
||||||
theme-name = Artix-dark
|
|
||||||
icon-theme-name = Adwaita
|
|
||||||
xft-antialias = true
|
|
||||||
#xft-dpi = 115
|
|
||||||
xft-rgba = rgb
|
|
||||||
xft-hintstyle = hintfull
|
|
||||||
background = /usr/share/backgrounds/GradientGlowBlue.jpg
|
|
||||||
default-user-image = /usr/share/icons/artix/logo.svg
|
|
@@ -1,24 +0,0 @@
|
|||||||
include "/usr/share/themes/Artix-dark/gtk-2.0/gtkrc"
|
|
||||||
style "user-font"
|
|
||||||
{
|
|
||||||
font_name="Roboto"
|
|
||||||
}
|
|
||||||
widget_class "*" style "user-font"
|
|
||||||
|
|
||||||
gtk-font-name="Roboto 11"
|
|
||||||
gtk-theme-name="Artix-dark"
|
|
||||||
gtk-toolbar-style=GTK_TOOLBAR_ICONS
|
|
||||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_BUTTON
|
|
||||||
gtk-primary-button-warps-slider=0
|
|
||||||
gtk-application-prefer-dark-theme=true
|
|
||||||
gtk-button-images=1
|
|
||||||
gtk-menu-images=1
|
|
||||||
gtk-cursor-theme-name=Premium
|
|
||||||
gtk-cursor-theme-size=18
|
|
||||||
gtk-enable-event-sounds=1
|
|
||||||
gtk-enable-input-feedback-sounds=1
|
|
||||||
gtk-primary-button-warps-slider=0
|
|
||||||
gtk-xft-antialias=1
|
|
||||||
gtk-xft-hinting=1
|
|
||||||
gtk-xft-hintstyle=hintfull
|
|
||||||
gtk-xft-rgba=rgb
|
|
@@ -1,22 +0,0 @@
|
|||||||
mkinitcpio-nfs-utils
|
|
||||||
squashfs-tools
|
|
||||||
nbd
|
|
||||||
|
|
||||||
@openrc artix-live-openrc
|
|
||||||
@runit artix-live-runit
|
|
||||||
@s6 artix-live-s6
|
|
||||||
|
|
||||||
calamares-branding
|
|
||||||
gparted
|
|
||||||
|
|
||||||
artix-grub-live
|
|
||||||
artix-grub-theme
|
|
||||||
|
|
||||||
virtualbox-guest-modules-artix
|
|
||||||
virtualbox-guest-utils
|
|
||||||
#open-vm-tools
|
|
||||||
broadcom-wl
|
|
||||||
|
|
||||||
intel-ucode
|
|
||||||
amd-ucode
|
|
||||||
artix-docs
|
|
@@ -1,311 +0,0 @@
|
|||||||
base
|
|
||||||
@openrc elogind-openrc
|
|
||||||
@runit elogind-runit
|
|
||||||
@s6 elogind-s6
|
|
||||||
acpi
|
|
||||||
b43-fwcutter
|
|
||||||
btrfs-progs
|
|
||||||
crda
|
|
||||||
dhclient
|
|
||||||
diffutils
|
|
||||||
dmraid
|
|
||||||
dnsmasq
|
|
||||||
dosfstools
|
|
||||||
e2fsprogs
|
|
||||||
ecryptfs-utils
|
|
||||||
exfat-utils
|
|
||||||
f2fs-tools
|
|
||||||
grub
|
|
||||||
htop
|
|
||||||
inetutils
|
|
||||||
iptables
|
|
||||||
ipw2100-fw
|
|
||||||
ipw2200-fw
|
|
||||||
jfsutils
|
|
||||||
linux
|
|
||||||
linux-headers
|
|
||||||
linux-firmware
|
|
||||||
logrotate
|
|
||||||
lsb-release
|
|
||||||
man-db
|
|
||||||
man-pages
|
|
||||||
memtest86+
|
|
||||||
mkinitcpio
|
|
||||||
mkinitcpio-openswap
|
|
||||||
nano
|
|
||||||
net-tools
|
|
||||||
ntfs-3g
|
|
||||||
@openrc acpid-openrc
|
|
||||||
@openrc cronie-openrc
|
|
||||||
@openrc cryptsetup-openrc
|
|
||||||
@openrc dhcpcd-openrc
|
|
||||||
@openrc haveged-openrc
|
|
||||||
@openrc lvm2-openrc
|
|
||||||
@openrc mdadm-openrc
|
|
||||||
@openrc nfs-utils-openrc
|
|
||||||
@openrc rsync-openrc
|
|
||||||
@openrc openssh-openrc
|
|
||||||
@openrc wpa_supplicant-openrc
|
|
||||||
@openrc syslog-ng-openrc
|
|
||||||
@runit acpid-runit
|
|
||||||
@runit cronie-runit
|
|
||||||
@runit cryptsetup-runit
|
|
||||||
@runit dhcpcd-runit
|
|
||||||
@runit haveged-runit
|
|
||||||
@runit lvm2-runit
|
|
||||||
@runit mdadm-runit
|
|
||||||
@runit nfs-utils-runit
|
|
||||||
@runit rsync-runit
|
|
||||||
@runit openssh-runit
|
|
||||||
@runit wpa_supplicant-runit
|
|
||||||
@runit syslog-ng-runit
|
|
||||||
@s6 acpid-s6
|
|
||||||
@s6 cronie-s6
|
|
||||||
@s6 cryptsetup-s6
|
|
||||||
@s6 dhcpcd-s6
|
|
||||||
@s6 haveged-s6
|
|
||||||
@s6 lvm2-s6
|
|
||||||
@s6 mdadm-s6
|
|
||||||
@s6 nfs-utils-s6
|
|
||||||
@s6 rsync-s6
|
|
||||||
@s6 openssh-s6
|
|
||||||
@s6 wpa_supplicant-s6
|
|
||||||
@s6 syslog-ng-s6
|
|
||||||
os-prober
|
|
||||||
reiserfsprogs
|
|
||||||
s-nail
|
|
||||||
sudo
|
|
||||||
sysfsutils
|
|
||||||
texinfo
|
|
||||||
usbutils
|
|
||||||
which
|
|
||||||
efibootmgr
|
|
||||||
xfsprogs
|
|
||||||
zsh
|
|
||||||
|
|
||||||
alsa-firmware
|
|
||||||
powertop
|
|
||||||
inxi
|
|
||||||
|
|
||||||
@openrc alsa-utils-openrc
|
|
||||||
@openrc avahi-openrc
|
|
||||||
@openrc connman-openrc
|
|
||||||
@openrc displaymanager-openrc
|
|
||||||
@openrc ntp-openrc
|
|
||||||
@openrc openrc-settingsd
|
|
||||||
@openrc bluez-openrc
|
|
||||||
@runit alsa-utils-runit
|
|
||||||
@runit avahi-runit
|
|
||||||
@runit bluez-runit
|
|
||||||
@runit connman-runit
|
|
||||||
@runit ntp-runit
|
|
||||||
@runit lightdm-runit
|
|
||||||
@runit blocaled
|
|
||||||
@s6 blocaled
|
|
||||||
@s6 alsa-utils-s6
|
|
||||||
@s6 avahi-s6
|
|
||||||
@s6 bluez-s6
|
|
||||||
@s6 connman-s6
|
|
||||||
@s6 ntp-s6
|
|
||||||
@s6 lightdm-s6
|
|
||||||
|
|
||||||
librabbitmq-c
|
|
||||||
libmongoc
|
|
||||||
|
|
||||||
terminus-font
|
|
||||||
ttf-droid
|
|
||||||
ttf-roboto
|
|
||||||
ttf-roboto-mono
|
|
||||||
ttf-inconsolata
|
|
||||||
ttf-liberation
|
|
||||||
|
|
||||||
xdg-user-dirs
|
|
||||||
xdg-utils
|
|
||||||
|
|
||||||
xorg-server
|
|
||||||
xorg-xinit
|
|
||||||
xorg-xhost
|
|
||||||
|
|
||||||
xf86-input-vmmouse
|
|
||||||
xf86-video-amdgpu
|
|
||||||
xf86-video-ati
|
|
||||||
xf86-video-dummy
|
|
||||||
xf86-video-fbdev
|
|
||||||
xf86-video-intel
|
|
||||||
xf86-video-nouveau
|
|
||||||
xf86-video-openchrome
|
|
||||||
xf86-video-sisusb
|
|
||||||
xf86-video-vesa
|
|
||||||
xf86-video-vmware
|
|
||||||
xf86-video-voodoo
|
|
||||||
# Core ISO packages end here
|
|
||||||
|
|
||||||
# Branding
|
|
||||||
artix-grub-theme
|
|
||||||
artix-dark-theme
|
|
||||||
artix-branding-base
|
|
||||||
artix-community-presets
|
|
||||||
xcursor-premium
|
|
||||||
|
|
||||||
# Community goodies
|
|
||||||
base-devel
|
|
||||||
xorg-xwininfo
|
|
||||||
xorg-xprop
|
|
||||||
subversion
|
|
||||||
git
|
|
||||||
cvs
|
|
||||||
wireless_tools
|
|
||||||
nftables
|
|
||||||
pacman-contrib
|
|
||||||
hddtemp
|
|
||||||
|
|
||||||
# That hated other
|
|
||||||
wine-gecko
|
|
||||||
wine
|
|
||||||
winetricks
|
|
||||||
|
|
||||||
# MATE
|
|
||||||
mate
|
|
||||||
# MATE extra
|
|
||||||
caja-image-converter
|
|
||||||
caja-open-terminal
|
|
||||||
caja-sendto
|
|
||||||
caja-wallpaper
|
|
||||||
caja-xattr-tags
|
|
||||||
engrampa
|
|
||||||
eom
|
|
||||||
mate-applets
|
|
||||||
mate-icon-theme-faenza
|
|
||||||
mate-media
|
|
||||||
mate-netbook
|
|
||||||
mate-power-manager
|
|
||||||
mate-screensaver
|
|
||||||
mate-sensors-applet
|
|
||||||
mate-system-monitor
|
|
||||||
mate-terminal
|
|
||||||
mate-utils
|
|
||||||
mozo
|
|
||||||
|
|
||||||
# LXDE
|
|
||||||
gpicview
|
|
||||||
lxappearance
|
|
||||||
lxappearance-obconf
|
|
||||||
lxde-common
|
|
||||||
lxde-icon-theme
|
|
||||||
lxhotkey
|
|
||||||
lxinput
|
|
||||||
lxlauncher
|
|
||||||
lxmusic
|
|
||||||
lxpanel
|
|
||||||
lxrandr
|
|
||||||
lxsession
|
|
||||||
lxtask
|
|
||||||
lxterminal
|
|
||||||
openbox
|
|
||||||
pcmanfm
|
|
||||||
|
|
||||||
# Applications and helpers
|
|
||||||
veracrypt
|
|
||||||
firefox
|
|
||||||
firefox-dark-reader
|
|
||||||
firefox-adblock-plus
|
|
||||||
firefox-noscript
|
|
||||||
firefox-ublock-origin
|
|
||||||
libreoffice-fresh
|
|
||||||
mpv
|
|
||||||
ffmpegthumbnailer
|
|
||||||
ffmpegthumbs
|
|
||||||
raw-thumbnailer
|
|
||||||
qt5-imageformats
|
|
||||||
gvfs-mtp
|
|
||||||
youtube-dl
|
|
||||||
pulseaudio-alsa
|
|
||||||
p7zip
|
|
||||||
unrar
|
|
||||||
fortune-mod
|
|
||||||
links
|
|
||||||
redshift
|
|
||||||
libunrar
|
|
||||||
torsocks
|
|
||||||
pulseaudio-bluetooth
|
|
||||||
frei0r-plugins
|
|
||||||
movit
|
|
||||||
lib32-mesa-vdpau
|
|
||||||
libva-mesa-driver
|
|
||||||
libva-vdpau-driver
|
|
||||||
libva-intel-driver
|
|
||||||
gst-plugins-good
|
|
||||||
gst-plugins-bad
|
|
||||||
gst-libav
|
|
||||||
mesa-demos
|
|
||||||
opencl-mesa
|
|
||||||
ocl-icd
|
|
||||||
chafa
|
|
||||||
tigervnc
|
|
||||||
strace
|
|
||||||
ltrace
|
|
||||||
lsof
|
|
||||||
# pacman frontend
|
|
||||||
pamac
|
|
||||||
|
|
||||||
breeze-icons
|
|
||||||
|
|
||||||
# Network management
|
|
||||||
connman-gtk
|
|
||||||
modemmanager
|
|
||||||
|
|
||||||
# GTK pkgs
|
|
||||||
geany-plugins
|
|
||||||
syncthing-gtk
|
|
||||||
handbrake
|
|
||||||
audacity
|
|
||||||
gimp
|
|
||||||
inkscape
|
|
||||||
openshot
|
|
||||||
hexchat
|
|
||||||
gufw
|
|
||||||
meld
|
|
||||||
lightdm-gtk-greeter
|
|
||||||
light-locker
|
|
||||||
atril
|
|
||||||
brasero
|
|
||||||
pluma
|
|
||||||
thunderbird
|
|
||||||
claws-mail
|
|
||||||
lollypop
|
|
||||||
midori
|
|
||||||
leafpad
|
|
||||||
|
|
||||||
# other stuff
|
|
||||||
gtk-engines
|
|
||||||
accountsservice
|
|
||||||
raw-thumbnailer
|
|
||||||
qt5-imageformats
|
|
||||||
bluez-utils
|
|
||||||
yaourtix
|
|
||||||
hunspell-en_US
|
|
||||||
picom
|
|
||||||
|
|
||||||
# Qt pkgs
|
|
||||||
kdenlive
|
|
||||||
digikam
|
|
||||||
smb4k
|
|
||||||
|
|
||||||
# Uniform QT/GTK look
|
|
||||||
kvantum-qt5
|
|
||||||
qt5-styleplugins
|
|
||||||
qt5ct
|
|
||||||
breeze-gtk
|
|
||||||
vertex-themes
|
|
||||||
oxygen
|
|
||||||
|
|
||||||
# KIO is still lacking
|
|
||||||
gvfs-smb
|
|
||||||
gvfs-afc
|
|
||||||
gvfs-google
|
|
||||||
gvfs-gphoto2
|
|
||||||
|
|
||||||
virtualbox-guest-utils
|
|
||||||
mc
|
|
||||||
screen
|
|
||||||
tmux
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/bash
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/calamares
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/conf.d
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/default
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/elogind
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/fstab
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/hosts
|
|
@@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/openrc-run
|
|
||||||
# Copyright 1999-2009 Gentoo Foundation
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
depend() {
|
|
||||||
need localmount
|
|
||||||
after artix-live
|
|
||||||
}
|
|
||||||
|
|
||||||
start() {
|
|
||||||
if get_bootparam "nox" ; then
|
|
||||||
touch /etc/.noxdm
|
|
||||||
fi
|
|
||||||
}
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/issue
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/issue.live
|
|
@@ -1,12 +0,0 @@
|
|||||||
[greeter]
|
|
||||||
clock-format = %a %d %B %Y, %H:%M:%S
|
|
||||||
position = 30%,center
|
|
||||||
font-name = Roboto 12
|
|
||||||
theme-name = Vertex-Dark
|
|
||||||
icon-theme-name = Adwaita
|
|
||||||
xft-antialias = true
|
|
||||||
#xft-dpi = 115
|
|
||||||
xft-rgba = rgb
|
|
||||||
xft-hintstyle = hintfull
|
|
||||||
background = /usr/share/backgrounds/Artix_dna_spiral_dark.jpg
|
|
||||||
default-user-image = /usr/share/icons/artix/logo.svg
|
|
@@ -1,169 +0,0 @@
|
|||||||
#
|
|
||||||
# General configuration
|
|
||||||
#
|
|
||||||
# start-default-seat = True to always start one seat if none are defined in the configuration
|
|
||||||
# greeter-user = User to run greeter as
|
|
||||||
# minimum-display-number = Minimum display number to use for X servers
|
|
||||||
# minimum-vt = First VT to run displays on
|
|
||||||
# lock-memory = True to prevent memory from being paged to disk
|
|
||||||
# user-authority-in-system-dir = True if session authority should be in the system location
|
|
||||||
# guest-account-script = Script to be run to setup guest account
|
|
||||||
# logind-check-graphical = True to on start seats that are marked as graphical by logind
|
|
||||||
# log-directory = Directory to log information to
|
|
||||||
# run-directory = Directory to put running state in
|
|
||||||
# cache-directory = Directory to cache to
|
|
||||||
# sessions-directory = Directory to find sessions
|
|
||||||
# remote-sessions-directory = Directory to find remote sessions
|
|
||||||
# greeters-directory = Directory to find greeters
|
|
||||||
# backup-logs = True to move add a .old suffix to old log files when opening new ones
|
|
||||||
# dbus-service = True if LightDM provides a D-Bus service to control it
|
|
||||||
#
|
|
||||||
[LightDM]
|
|
||||||
#start-default-seat=true
|
|
||||||
#greeter-user=lightdm
|
|
||||||
#minimum-display-number=0
|
|
||||||
#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799
|
|
||||||
#lock-memory=true
|
|
||||||
#user-authority-in-system-dir=false
|
|
||||||
#guest-account-script=guest-account
|
|
||||||
#logind-check-graphical=false
|
|
||||||
#log-directory=/var/log/lightdm
|
|
||||||
run-directory=/run/lightdm
|
|
||||||
#cache-directory=/var/cache/lightdm
|
|
||||||
#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions
|
|
||||||
#remote-sessions-directory=/usr/share/lightdm/remote-sessions
|
|
||||||
#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters
|
|
||||||
#backup-logs=true
|
|
||||||
#dbus-service=true
|
|
||||||
|
|
||||||
#
|
|
||||||
# Seat configuration
|
|
||||||
#
|
|
||||||
# Seat configuration is matched against the seat name glob in the section, for example:
|
|
||||||
# [Seat:*] matches all seats and is applied first.
|
|
||||||
# [Seat:seat0] matches the seat named "seat0".
|
|
||||||
# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client".
|
|
||||||
#
|
|
||||||
# type = Seat type (local, xremote, unity)
|
|
||||||
# pam-service = PAM service to use for login
|
|
||||||
# pam-autologin-service = PAM service to use for autologin
|
|
||||||
# pam-greeter-service = PAM service to use for greeters
|
|
||||||
# xserver-backend = X backend to use (mir)
|
|
||||||
# xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
|
|
||||||
# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option)
|
|
||||||
# xserver-config = Config file to pass to X server
|
|
||||||
# xserver-layout = Layout to pass to X server
|
|
||||||
# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
|
|
||||||
# xserver-share = True if the X server is shared for both greeter and session
|
|
||||||
# xserver-hostname = Hostname of X server (only for type=xremote)
|
|
||||||
# xserver-display-number = Display number of X server (only for type=xremote)
|
|
||||||
# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
|
|
||||||
# xdmcp-port = XDMCP UDP/IP port to communicate on
|
|
||||||
# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
|
|
||||||
# unity-compositor-command = Unity compositor command to run (can also contain arguments e.g. unity-system-compositor -special-option)
|
|
||||||
# unity-compositor-timeout = Number of seconds to wait for compositor to start
|
|
||||||
# greeter-session = Session to load for greeter
|
|
||||||
# greeter-hide-users = True to hide the user list
|
|
||||||
# greeter-allow-guest = True if the greeter should show a guest login option
|
|
||||||
# greeter-show-manual-login = True if the greeter should offer a manual login option
|
|
||||||
# greeter-show-remote-login = True if the greeter should offer a remote login option
|
|
||||||
# user-session = Session to load for users
|
|
||||||
# allow-user-switching = True if allowed to switch users
|
|
||||||
# allow-guest = True if guest login is allowed
|
|
||||||
# guest-session = Session to load for guests (overrides user-session)
|
|
||||||
# session-wrapper = Wrapper script to run session with
|
|
||||||
# greeter-wrapper = Wrapper script to run greeter with
|
|
||||||
# guest-wrapper = Wrapper script to run guest sessions with
|
|
||||||
# display-setup-script = Script to run when starting a greeter session (runs as root)
|
|
||||||
# display-stopped-script = Script to run after stopping the display server (runs as root)
|
|
||||||
# greeter-setup-script = Script to run when starting a greeter (runs as root)
|
|
||||||
# session-setup-script = Script to run when starting a user session (runs as root)
|
|
||||||
# session-cleanup-script = Script to run when quitting a user session (runs as root)
|
|
||||||
# autologin-guest = True to log in as guest by default
|
|
||||||
# autologin-user = User to log in with by default (overrides autologin-guest)
|
|
||||||
# autologin-user-timeout = Number of seconds to wait before loading default user
|
|
||||||
# autologin-session = Session to load for automatic login (overrides user-session)
|
|
||||||
# autologin-in-background = True if autologin session should not be immediately activated
|
|
||||||
# exit-on-failure = True if the daemon should exit if this seat fails
|
|
||||||
#
|
|
||||||
[Seat:*]
|
|
||||||
#type=local
|
|
||||||
#pam-service=lightdm
|
|
||||||
#pam-autologin-service=lightdm-autologin
|
|
||||||
#pam-greeter-service=lightdm-greeter
|
|
||||||
#xserver-backend=
|
|
||||||
#xserver-command=X
|
|
||||||
#xmir-command=Xmir
|
|
||||||
#xserver-config=
|
|
||||||
#xserver-layout=
|
|
||||||
#xserver-allow-tcp=false
|
|
||||||
#xserver-share=true
|
|
||||||
#xserver-hostname=
|
|
||||||
#xserver-display-number=
|
|
||||||
#xdmcp-manager=
|
|
||||||
#xdmcp-port=177
|
|
||||||
#xdmcp-key=
|
|
||||||
#unity-compositor-command=unity-system-compositor
|
|
||||||
#unity-compositor-timeout=60
|
|
||||||
greeter-session=lightdm-gtk-greeter
|
|
||||||
#greeter-hide-users=false
|
|
||||||
#greeter-allow-guest=true
|
|
||||||
#greeter-show-manual-login=false
|
|
||||||
#greeter-show-remote-login=true
|
|
||||||
#user-session=default
|
|
||||||
#allow-user-switching=true
|
|
||||||
#allow-guest=true
|
|
||||||
#guest-session=
|
|
||||||
session-wrapper=/etc/lightdm/Xsession
|
|
||||||
#greeter-wrapper=
|
|
||||||
#guest-wrapper=
|
|
||||||
#display-setup-script=
|
|
||||||
#display-stopped-script=
|
|
||||||
#greeter-setup-script=
|
|
||||||
#session-setup-script=
|
|
||||||
#session-cleanup-script=
|
|
||||||
#autologin-guest=false
|
|
||||||
autologin-user=artix
|
|
||||||
#autologin-user-timeout=0
|
|
||||||
#autologin-in-background=false
|
|
||||||
autologin-session=mate
|
|
||||||
#exit-on-failure=false
|
|
||||||
|
|
||||||
#
|
|
||||||
# XDMCP Server configuration
|
|
||||||
#
|
|
||||||
# enabled = True if XDMCP connections should be allowed
|
|
||||||
# port = UDP/IP port to listen for connections on
|
|
||||||
# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present)
|
|
||||||
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
|
|
||||||
# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset)
|
|
||||||
#
|
|
||||||
# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
|
|
||||||
# it can be a word and the first 7 characters are used as the key.
|
|
||||||
#
|
|
||||||
[XDMCPServer]
|
|
||||||
#enabled=false
|
|
||||||
#port=177
|
|
||||||
#listen-address=
|
|
||||||
#key=
|
|
||||||
#hostname=
|
|
||||||
|
|
||||||
#
|
|
||||||
# VNC Server configuration
|
|
||||||
#
|
|
||||||
# enabled = True if VNC connections should be allowed
|
|
||||||
# command = Command to run Xvnc server with
|
|
||||||
# port = TCP/IP port to listen for connections on
|
|
||||||
# listen-address = Host/address to listen for VNC connections (use all addresses if not present)
|
|
||||||
# width = Width of display to use
|
|
||||||
# height = Height of display to use
|
|
||||||
# depth = Color depth of display to use
|
|
||||||
#
|
|
||||||
[VNCServer]
|
|
||||||
#enabled=false
|
|
||||||
#command=Xvnc
|
|
||||||
#port=5900
|
|
||||||
#listen-address=
|
|
||||||
#width=1024
|
|
||||||
#height=768
|
|
||||||
#depth=8
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/local.d
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/mkinitcpio.conf.mod
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/pacman.conf
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/pam.d
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/polkit-1
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/rc.conf
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/runlevels
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/skel
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/live-overlay/etc/sudoers.d
|
|
@@ -1 +0,0 @@
|
|||||||
../../community/live-overlay/usr
|
|
@@ -1,24 +0,0 @@
|
|||||||
################ install ################
|
|
||||||
# default displaymanager: none
|
|
||||||
# supported: lightdm, sddm, gdm, lxdm, mdm
|
|
||||||
DISPLAYMANAGER="lightdm"
|
|
||||||
|
|
||||||
# Set to false to disable autologin in the livecd
|
|
||||||
AUTOLOGIN="true"
|
|
||||||
|
|
||||||
# start services
|
|
||||||
SERVICES=('consolefont' 'acpid' 'bluetoothd' 'cronie' 'cupsd' 'metalog' 'connmand' 'xdm')
|
|
||||||
|
|
||||||
# default group membership
|
|
||||||
#ADDGROUPS="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
|
||||||
|
|
||||||
################# live-session #################
|
|
||||||
|
|
||||||
# unset defaults to given value
|
|
||||||
# HOST_NAME="artix"
|
|
||||||
|
|
||||||
# unset defaults to given value
|
|
||||||
# USER_NAME="artix"
|
|
||||||
|
|
||||||
# unset defaults to given value
|
|
||||||
# PASSWORD="artix"
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/root-overlay/etc/bash
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/root-overlay/etc/conf.d
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/root-overlay/etc/default
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/root-overlay/etc/elogind
|
|
@@ -1 +0,0 @@
|
|||||||
../../../community/root-overlay/etc/environment
|
|
@@ -1 +0,0 @@
|
|||||||
../../../live-overlay/etc/lightdm/lightdm-gtk-greeter.conf
|
|
@@ -1,169 +0,0 @@
|
|||||||
#
|
|
||||||
# General configuration
|
|
||||||
#
|
|
||||||
# start-default-seat = True to always start one seat if none are defined in the configuration
|
|
||||||
# greeter-user = User to run greeter as
|
|
||||||
# minimum-display-number = Minimum display number to use for X servers
|
|
||||||
# minimum-vt = First VT to run displays on
|
|
||||||
# lock-memory = True to prevent memory from being paged to disk
|
|
||||||
# user-authority-in-system-dir = True if session authority should be in the system location
|
|
||||||
# guest-account-script = Script to be run to setup guest account
|
|
||||||
# logind-check-graphical = True to on start seats that are marked as graphical by logind
|
|
||||||
# log-directory = Directory to log information to
|
|
||||||
# run-directory = Directory to put running state in
|
|
||||||
# cache-directory = Directory to cache to
|
|
||||||
# sessions-directory = Directory to find sessions
|
|
||||||
# remote-sessions-directory = Directory to find remote sessions
|
|
||||||
# greeters-directory = Directory to find greeters
|
|
||||||
# backup-logs = True to move add a .old suffix to old log files when opening new ones
|
|
||||||
# dbus-service = True if LightDM provides a D-Bus service to control it
|
|
||||||
#
|
|
||||||
[LightDM]
|
|
||||||
#start-default-seat=true
|
|
||||||
#greeter-user=lightdm
|
|
||||||
#minimum-display-number=0
|
|
||||||
#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799
|
|
||||||
#lock-memory=true
|
|
||||||
#user-authority-in-system-dir=false
|
|
||||||
#guest-account-script=guest-account
|
|
||||||
#logind-check-graphical=false
|
|
||||||
#log-directory=/var/log/lightdm
|
|
||||||
run-directory=/run/lightdm
|
|
||||||
#cache-directory=/var/cache/lightdm
|
|
||||||
#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions
|
|
||||||
#remote-sessions-directory=/usr/share/lightdm/remote-sessions
|
|
||||||
#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters
|
|
||||||
#backup-logs=true
|
|
||||||
#dbus-service=true
|
|
||||||
|
|
||||||
#
|
|
||||||
# Seat configuration
|
|
||||||
#
|
|
||||||
# Seat configuration is matched against the seat name glob in the section, for example:
|
|
||||||
# [Seat:*] matches all seats and is applied first.
|
|
||||||
# [Seat:seat0] matches the seat named "seat0".
|
|
||||||
# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client".
|
|
||||||
#
|
|
||||||
# type = Seat type (local, xremote, unity)
|
|
||||||
# pam-service = PAM service to use for login
|
|
||||||
# pam-autologin-service = PAM service to use for autologin
|
|
||||||
# pam-greeter-service = PAM service to use for greeters
|
|
||||||
# xserver-backend = X backend to use (mir)
|
|
||||||
# xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
|
|
||||||
# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option)
|
|
||||||
# xserver-config = Config file to pass to X server
|
|
||||||
# xserver-layout = Layout to pass to X server
|
|
||||||
# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
|
|
||||||
# xserver-share = True if the X server is shared for both greeter and session
|
|
||||||
# xserver-hostname = Hostname of X server (only for type=xremote)
|
|
||||||
# xserver-display-number = Display number of X server (only for type=xremote)
|
|
||||||
# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
|
|
||||||
# xdmcp-port = XDMCP UDP/IP port to communicate on
|
|
||||||
# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
|
|
||||||
# unity-compositor-command = Unity compositor command to run (can also contain arguments e.g. unity-system-compositor -special-option)
|
|
||||||
# unity-compositor-timeout = Number of seconds to wait for compositor to start
|
|
||||||
# greeter-session = Session to load for greeter
|
|
||||||
# greeter-hide-users = True to hide the user list
|
|
||||||
# greeter-allow-guest = True if the greeter should show a guest login option
|
|
||||||
# greeter-show-manual-login = True if the greeter should offer a manual login option
|
|
||||||
# greeter-show-remote-login = True if the greeter should offer a remote login option
|
|
||||||
# user-session = Session to load for users
|
|
||||||
# allow-user-switching = True if allowed to switch users
|
|
||||||
# allow-guest = True if guest login is allowed
|
|
||||||
# guest-session = Session to load for guests (overrides user-session)
|
|
||||||
# session-wrapper = Wrapper script to run session with
|
|
||||||
# greeter-wrapper = Wrapper script to run greeter with
|
|
||||||
# guest-wrapper = Wrapper script to run guest sessions with
|
|
||||||
# display-setup-script = Script to run when starting a greeter session (runs as root)
|
|
||||||
# display-stopped-script = Script to run after stopping the display server (runs as root)
|
|
||||||
# greeter-setup-script = Script to run when starting a greeter (runs as root)
|
|
||||||
# session-setup-script = Script to run when starting a user session (runs as root)
|
|
||||||
# session-cleanup-script = Script to run when quitting a user session (runs as root)
|
|
||||||
# autologin-guest = True to log in as guest by default
|
|
||||||
# autologin-user = User to log in with by default (overrides autologin-guest)
|
|
||||||
# autologin-user-timeout = Number of seconds to wait before loading default user
|
|
||||||
# autologin-session = Session to load for automatic login (overrides user-session)
|
|
||||||
# autologin-in-background = True if autologin session should not be immediately activated
|
|
||||||
# exit-on-failure = True if the daemon should exit if this seat fails
|
|
||||||
#
|
|
||||||
[Seat:*]
|
|
||||||
#type=local
|
|
||||||
#pam-service=lightdm
|
|
||||||
#pam-autologin-service=lightdm-autologin
|
|
||||||
#pam-greeter-service=lightdm-greeter
|
|
||||||
#xserver-backend=
|
|
||||||
#xserver-command=X
|
|
||||||
#xmir-command=Xmir
|
|
||||||
#xserver-config=
|
|
||||||
#xserver-layout=
|
|
||||||
#xserver-allow-tcp=false
|
|
||||||
#xserver-share=true
|
|
||||||
#xserver-hostname=
|
|
||||||
#xserver-display-number=
|
|
||||||
#xdmcp-manager=
|
|
||||||
#xdmcp-port=177
|
|
||||||
#xdmcp-key=
|
|
||||||
#unity-compositor-command=unity-system-compositor
|
|
||||||
#unity-compositor-timeout=60
|
|
||||||
greeter-session=lightdm-gtk-greeter
|
|
||||||
#greeter-hide-users=false
|
|
||||||
#greeter-allow-guest=true
|
|
||||||
#greeter-show-manual-login=false
|
|
||||||
#greeter-show-remote-login=true
|
|
||||||
#user-session=default
|
|
||||||
#allow-user-switching=true
|
|
||||||
#allow-guest=true
|
|
||||||
#guest-session=
|
|
||||||
session-wrapper=/etc/lightdm/Xsession
|
|
||||||
#greeter-wrapper=
|
|
||||||
#guest-wrapper=
|
|
||||||
#display-setup-script=
|
|
||||||
#display-stopped-script=
|
|
||||||
#greeter-setup-script=
|
|
||||||
#session-setup-script=
|
|
||||||
#session-cleanup-script=
|
|
||||||
#autologin-guest=false
|
|
||||||
autologin-user=artix
|
|
||||||
#autologin-user-timeout=0
|
|
||||||
#autologin-in-background=false
|
|
||||||
autologin-session=mate
|
|
||||||
#exit-on-failure=false
|
|
||||||
|
|
||||||
#
|
|
||||||
# XDMCP Server configuration
|
|
||||||
#
|
|
||||||
# enabled = True if XDMCP connections should be allowed
|
|
||||||
# port = UDP/IP port to listen for connections on
|
|
||||||
# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present)
|
|
||||||
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
|
|
||||||
# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset)
|
|
||||||
#
|
|
||||||
# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
|
|
||||||
# it can be a word and the first 7 characters are used as the key.
|
|
||||||
#
|
|
||||||
[XDMCPServer]
|
|
||||||
#enabled=false
|
|
||||||
#port=177
|
|
||||||
#listen-address=
|
|
||||||
#key=
|
|
||||||
#hostname=
|
|
||||||
|
|
||||||
#
|
|
||||||
# VNC Server configuration
|
|
||||||
#
|
|
||||||
# enabled = True if VNC connections should be allowed
|
|
||||||
# command = Command to run Xvnc server with
|
|
||||||
# port = TCP/IP port to listen for connections on
|
|
||||||
# listen-address = Host/address to listen for VNC connections (use all addresses if not present)
|
|
||||||
# width = Width of display to use
|
|
||||||
# height = Height of display to use
|
|
||||||
# depth = Color depth of display to use
|
|
||||||
#
|
|
||||||
[VNCServer]
|
|
||||||
#enabled=false
|
|
||||||
#command=Xvnc
|
|
||||||
#port=5900
|
|
||||||
#listen-address=
|
|
||||||
#width=1024
|
|
||||||
#height=768
|
|
||||||
#depth=8
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user