Compare commits
69 Commits
Author | SHA1 | Date | |
---|---|---|---|
15124ee5d9 | |||
5422a8a70e | |||
34c30203ef | |||
843e3d7441 | |||
ed35ada27d
|
|||
33f6c01b0d | |||
b682e7248e | |||
![]() |
bee55e3b02 | ||
54a600b970 | |||
2939fe5b61 | |||
1521a2880b | |||
![]() |
fdcb5ccd0d | ||
![]() |
b991c20745 | ||
![]() |
4c29e3b622 | ||
![]() |
849dfd55fa | ||
![]() |
1d23b2fd67 | ||
![]() |
d231212dab | ||
![]() |
e685480820 | ||
![]() |
aa016e7639 | ||
![]() |
2708bcbaf8 | ||
![]() |
e4bb7de3e1 | ||
![]() |
638918c1df | ||
![]() |
362dc08e68 | ||
![]() |
86626dadc1 | ||
![]() |
890b8508bd | ||
![]() |
86bfb5b0aa | ||
![]() |
2903ed1930 | ||
![]() |
a77c70c447 | ||
![]() |
0fadb6c8c5 | ||
![]() |
d8d25ba37a
|
||
![]() |
d6d30891b5 | ||
![]() |
0ca86c6c61 | ||
![]() |
cf02b1e871 | ||
![]() |
f027ae5f5b | ||
![]() |
f6bb1fc0db | ||
![]() |
60e0686f5b | ||
![]() |
c23baa29e6 | ||
![]() |
6ea21bae40 | ||
![]() |
84de98283a | ||
![]() |
621bd87885 | ||
![]() |
3d5cd57338 | ||
![]() |
6be85bc2ac | ||
![]() |
2fcb4254cc | ||
![]() |
651c356f61 | ||
![]() |
c15e9c5644 | ||
![]() |
b57fb319a9 | ||
![]() |
2e007f95ae | ||
![]() |
50de508c81 | ||
![]() |
bb207c00d1 | ||
![]() |
85fe3939b4 | ||
![]() |
d2c530bc17 | ||
![]() |
1cee47cd19 | ||
![]() |
35515bd1ca | ||
![]() |
33530785f3 | ||
![]() |
d7f9988cf8 | ||
![]() |
0d751de6b9 | ||
![]() |
428f15946a | ||
![]() |
fa6fd5d49d | ||
![]() |
b2ef8d0470 | ||
![]() |
7df60c853c | ||
![]() |
9ac23c30e9 | ||
![]() |
f8ccd24522 | ||
![]() |
3151d1ea52 | ||
![]() |
8738b20823 | ||
![]() |
3389203f29 | ||
![]() |
44f0ad185c | ||
![]() |
35e4827569 | ||
![]() |
ccb68bfdaa | ||
![]() |
7bd12f03ea |
112
Makefile
112
Makefile
@@ -1,87 +1,89 @@
|
||||
Version=0.4
|
||||
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
|
||||
|
||||
INFO = \
|
||||
repo_info
|
||||
LIVE = \
|
||||
base/live-overlay/etc/fstab \
|
||||
base/live-overlay/etc/issue
|
||||
|
||||
LIVE_ETC = \
|
||||
base/live-overlay/etc/issue \
|
||||
base/live-overlay/etc/fstab
|
||||
|
||||
LIVE_ETC_DEFAULT = \
|
||||
LIVE_DEFAULT = \
|
||||
$(wildcard base/live-overlay/etc/default/*)
|
||||
|
||||
LIVE_ETC_PAM = \
|
||||
LIVE_PAM = \
|
||||
$(wildcard base/live-overlay/etc/pam.d/*)
|
||||
|
||||
LIVE_ETC_SUDOERS = \
|
||||
LIVE_SUDOERS = \
|
||||
$(wildcard base/live-overlay/etc/sudoers.d/*)
|
||||
|
||||
LXQT = \
|
||||
$(wildcard lxqt/Packages-*) \
|
||||
lxqt/profile.conf
|
||||
|
||||
CINNAMON = \
|
||||
$(wildcard cinnamon/Packages-*) \
|
||||
cinnamon/profile.conf
|
||||
LXQT_DM = \
|
||||
lxqt/desktop-overlay/etc/sddm.conf
|
||||
|
||||
CINNAMON_LIGHTDM = \
|
||||
$(wildcard cinnamon/desktop-overlay/etc/lightdm/*.conf)
|
||||
install-base:
|
||||
install $(DMODE) $(DESTDIR)$(BASEDIR)
|
||||
install $(FMODE) $(BASE) $(DESTDIR)$(BASEDIR)
|
||||
|
||||
install_base:
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles
|
||||
install -m0644 ${INFO} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)
|
||||
install $(FMODE) $(LIVE) $(DESTDIR)$(OVERLAYDIR)
|
||||
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base
|
||||
install -m0644 ${BASE} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/default
|
||||
install $(FMODE) $(LIVE_DEFAULT) $(DESTDIR)$(OVERLAYDIR)/default
|
||||
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc
|
||||
install -m0644 ${LIVE_ETC} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||
install $(FMODE) $(LIVE_PAM) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/default
|
||||
install -m0644 ${LIVE_ETC_DEFAULT} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/default
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||
install $(FMODE) $(LIVE_SUDOERS) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/pam.d
|
||||
install -m0644 ${LIVE_ETC_PAM} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/pam.d
|
||||
install-lxqt:
|
||||
install $(DMODE) $(DESTDIR)$(LXQTDIR)
|
||||
install $(FMODE) $(LXQT) $(DESTDIR)$(LXQTDIR)
|
||||
install $(DMODE) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||
install $(FMODE) $(LXQT_DM) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/sudoers.d
|
||||
install -m0644 ${LIVE_ETC_SUDOERS} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/sudoers.d
|
||||
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)
|
||||
|
||||
install_profiles:
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/lxqt
|
||||
install -m0644 ${LXQT} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/lxqt
|
||||
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 -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/cinnamon
|
||||
install -m0644 ${CINNAMON} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/cinnamon
|
||||
install: install-lxqt install-base
|
||||
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/cinnamon/desktop-overlay/etc/lightdm
|
||||
install -m0644 ${CINNAMON_LIGHTDM} $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/cinnamon/desktop-overlay/etc/lightdm
|
||||
|
||||
uninstall_base:
|
||||
for f in ${INFO}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/$$f; done
|
||||
for f in ${BASE}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/$$f; done
|
||||
for f in ${LIVE_ETC}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/$$f; done
|
||||
for f in ${LIVE_ETC_DEFAULT}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/default/$$f; done
|
||||
for f in ${LIVE_ETC_PAM}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/pam.d/$$f; done
|
||||
for f in ${LIVE_ETC_SUDOERS}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/base/live-overlay/etc/sudoers.d/$$f; done
|
||||
|
||||
uninstall_profiles:
|
||||
for f in ${LXQT}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/lxqt/$$f; done
|
||||
for f in ${CINNAMON}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/cinnamon/$$f; done
|
||||
for f in ${CINNAMON_LIGHTDM}; do rm -f $(DESTDIR)$(PREFIX)/share/artools/iso-profiles/cinnamon/desktop-overlay/etc/lightdm/$$f; done
|
||||
|
||||
install: install_base install_profiles
|
||||
|
||||
uninstall: uninstall_base uninstall_profiles
|
||||
uninstall: uninstall-lxqt uninstall-base
|
||||
|
||||
dist:
|
||||
git archive --format=tar --prefix=iso-profiles-$(Version)/ $(Version) | gzip -9 > iso-profiles-$(Version).tar.gz
|
||||
gpg --detach-sign --use-agent iso-profiles-$(Version).tar.gz
|
||||
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
|
||||
|
||||
.PHONY: install uninstall dist
|
||||
|
@@ -1,8 +1,15 @@
|
||||
mkinitcpio-nfs-utils
|
||||
nbd
|
||||
>openrc artix-live-openrc
|
||||
squashfs-tools
|
||||
artix-live-portable-efi
|
||||
virtualbox-guest-modules-artix
|
||||
virtualbox-guest-utils
|
||||
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
|
||||
|
@@ -25,14 +25,13 @@ grep
|
||||
grub
|
||||
gzip
|
||||
inetutils
|
||||
#intel-ucode
|
||||
iproute2
|
||||
iptables
|
||||
iputils
|
||||
ipw2100-fw
|
||||
ipw2200-fw
|
||||
jfsutils
|
||||
KERNEL
|
||||
linux
|
||||
less
|
||||
licenses
|
||||
linux-firmware
|
||||
@@ -43,25 +42,35 @@ man-pages
|
||||
memtest86+
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
net-tools
|
||||
ntfs-3g
|
||||
>openrc acpid-openrc
|
||||
>openrc cronie-openrc
|
||||
>openrc cryptsetup-openrc
|
||||
>openrc dbus-openrc
|
||||
>openrc device-mapper-openrc
|
||||
>openrc dhcpcd-openrc
|
||||
>openrc elogind-openrc
|
||||
>openrc haveged-openrc
|
||||
>openrc lvm2-openrc
|
||||
>openrc mdadm-openrc
|
||||
>openrc netifrc
|
||||
>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 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
|
||||
artix-sysvcompat
|
||||
os-prober
|
||||
pacman
|
||||
pciutils
|
||||
pcmciautils
|
||||
perl
|
||||
procps-ng
|
||||
psmisc
|
||||
@@ -76,7 +85,6 @@ texinfo
|
||||
usbutils
|
||||
util-linux
|
||||
which
|
||||
>x86_64 efibootmgr
|
||||
efibootmgr
|
||||
xfsprogs
|
||||
zd1211-firmware
|
||||
zsh
|
||||
|
@@ -2,4 +2,4 @@
|
||||
# /etc/fstab: static file system information
|
||||
#
|
||||
# <file system> <dir> <type> <options> <dump> <pass>
|
||||
/dev/mapper/root-image / auto defaults 0 0
|
||||
/dev/mapper/rootfs / auto defaults 0 0
|
||||
|
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
|
@@ -1,26 +1,25 @@
|
||||
################ install ################
|
||||
|
||||
# default displaymanager: none
|
||||
# supported; lightdm, sddm, gdm, lxdm, mdm
|
||||
# supported: lightdm, sddm, gdm, lxdm, mdm
|
||||
# displaymanager="none"
|
||||
|
||||
# Set to false to disable autologin in the livecd
|
||||
# autologin="true"
|
||||
autologin="false"
|
||||
|
||||
# service runlevels
|
||||
# openrc_boot=('elogind')
|
||||
# openrc_default=('acpid' 'bluetooth' 'cronie' 'cupsd' 'dbus' 'syslog-ng' 'NetworkManager')
|
||||
# start services
|
||||
# services=('acpid' 'bluetooth' 'cronie' 'cupsd' 'syslog-ng' 'NetworkManager')
|
||||
|
||||
# unset defaults to given values
|
||||
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users"
|
||||
# default group membership
|
||||
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
||||
|
||||
################# live-session #################
|
||||
|
||||
# unset defaults to given value
|
||||
# default value
|
||||
# hostname="artix"
|
||||
|
||||
# unset defaults to given value
|
||||
# default value
|
||||
# username="artix"
|
||||
|
||||
# unset defaults to given value
|
||||
# default value
|
||||
# password="artix"
|
||||
|
@@ -1,30 +0,0 @@
|
||||
alsa-firmware
|
||||
artix-cinnamon-presets
|
||||
dmidecode
|
||||
inxi
|
||||
cinnamon
|
||||
media-player-info
|
||||
modemmanager
|
||||
nss-mdns
|
||||
>openrc alsa-utils-openrc
|
||||
>openrc avahi-openrc
|
||||
>openrc displaymanager-openrc
|
||||
>openrc json-c
|
||||
>openrc networkmanager-openrc
|
||||
>openrc ntp-openrc
|
||||
>openrc openrc-settingsd
|
||||
>openrc openssh-openrc
|
||||
>openrc syslog-ng-openrc
|
||||
powertop
|
||||
terminus-font
|
||||
ttf-bitstream-vera
|
||||
ttf-dejavu
|
||||
ttf-droid
|
||||
ttf-inconsolata
|
||||
ttf-indic-otf
|
||||
ttf-liberation
|
||||
xdg-user-dirs
|
||||
xdg-utils
|
||||
xorg-server
|
||||
xorg-twm
|
||||
xorg-xinit
|
@@ -1,22 +0,0 @@
|
||||
calamares
|
||||
mkinitcpio-nfs-utils
|
||||
nbd
|
||||
>openrc artix-live-openrc
|
||||
squashfs-tools
|
||||
artix-live-portable-efi
|
||||
partitionmanager
|
||||
virtualbox-guest-modules-artix
|
||||
virtualbox-guest-utils
|
||||
open-vm-tools
|
||||
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
|
@@ -1,12 +0,0 @@
|
||||
[greeter]
|
||||
background = /usr/share/backgrounds/artix.jpg
|
||||
font-name = Cantarell 11
|
||||
xft-antialias = true
|
||||
icon-theme-name = Adwaita
|
||||
theme-name = Adwaita
|
||||
cursor-theme-name = Adwaita
|
||||
show-clock = true
|
||||
default-user-image = /usr/share/icons/foo.png
|
||||
xft-hintstyle = hintfull
|
||||
position = 50%,center 50%,center
|
||||
panel-position = top
|
@@ -1,26 +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"
|
||||
|
||||
# service runlevels
|
||||
# openrc_boot=('elogind')
|
||||
# openrc_default=('acpid' 'bluetooth' 'cronie' 'cupsd' 'dbus' 'syslog-ng' 'NetworkManager')
|
||||
|
||||
# unset defaults to given values
|
||||
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users"
|
||||
|
||||
################# live-session #################
|
||||
|
||||
# unset defaults to given value
|
||||
# hostname="artix"
|
||||
|
||||
# unset defaults to given value
|
||||
# username="artix"
|
||||
|
||||
# unset defaults to given value
|
||||
# password="artix"
|
@@ -1,38 +1,14 @@
|
||||
alsa-firmware
|
||||
artix-sddm-theme
|
||||
artix-lxqt-presets
|
||||
compton
|
||||
#compton-conf
|
||||
dmidecode
|
||||
#lximage-qt
|
||||
#qpdfview
|
||||
#qupzilla
|
||||
#vlc
|
||||
gvfs
|
||||
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
#juffed-qt5
|
||||
kwrite
|
||||
lxqt-about
|
||||
lxqt-admin
|
||||
lxqt-common
|
||||
lxqt-config
|
||||
lxqt-globalkeys
|
||||
lxqt-notificationd
|
||||
lxqt-openssh-askpass
|
||||
lxqt-panel
|
||||
lxqt-policykit
|
||||
lxqt-powermanagement
|
||||
lxqt-qtplugin
|
||||
lxqt-runner
|
||||
lxqt-session
|
||||
lxqt-sudo
|
||||
media-player-info
|
||||
mobile-broadband-provider-info
|
||||
|
||||
modemmanager
|
||||
network-manager-applet
|
||||
nss-mdns
|
||||
obconf-qt
|
||||
openbox
|
||||
|
||||
>openrc alsa-utils-openrc
|
||||
>openrc avahi-openrc
|
||||
>openrc displaymanager-openrc
|
||||
@@ -40,12 +16,32 @@ openbox
|
||||
>openrc networkmanager-openrc
|
||||
>openrc ntp-openrc
|
||||
>openrc openrc-settingsd
|
||||
>openrc openssh-openrc
|
||||
>openrc syslog-ng-openrc
|
||||
>openrc bluez-openrc
|
||||
|
||||
>runit alsa-utils-runit
|
||||
>runit avahi-runit
|
||||
>runit sddm-runit
|
||||
>runit json-c
|
||||
>runit networkmanager-runit
|
||||
>runit ntp-runit
|
||||
>runit bluez-runit
|
||||
|
||||
librabbitmq-c
|
||||
libmongoc
|
||||
#python
|
||||
|
||||
lxqt
|
||||
|
||||
compton
|
||||
lximage-qt
|
||||
qpdfview
|
||||
gvfs
|
||||
kwrite
|
||||
obconf-qt
|
||||
pcmanfm-qt
|
||||
powertop
|
||||
qps
|
||||
qterminal
|
||||
falkon
|
||||
xarchiver
|
||||
|
||||
terminus-font
|
||||
ttf-bitstream-vera
|
||||
ttf-dejavu
|
||||
@@ -53,9 +49,23 @@ ttf-droid
|
||||
ttf-inconsolata
|
||||
ttf-indic-otf
|
||||
ttf-liberation
|
||||
xarchiver
|
||||
|
||||
xdg-user-dirs
|
||||
xdg-utils
|
||||
|
||||
xorg-server
|
||||
xorg-twm
|
||||
xorg-xinit
|
||||
|
||||
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
|
||||
|
||||
|
@@ -1,22 +1,19 @@
|
||||
calamares
|
||||
mkinitcpio-nfs-utils
|
||||
nbd
|
||||
>openrc artix-live-openrc
|
||||
squashfs-tools
|
||||
nbd
|
||||
|
||||
>openrc artix-live-openrc
|
||||
>runit artix-live-runit
|
||||
artix-live-portable-efi
|
||||
|
||||
calamares-branding
|
||||
partitionmanager
|
||||
#orca
|
||||
|
||||
virtualbox-guest-modules-artix
|
||||
virtualbox-guest-utils
|
||||
open-vm-tools
|
||||
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
|
||||
broadcom-wl
|
||||
|
||||
intel-ucode
|
||||
amd-ucode
|
||||
|
129
lxqt/desktop-overlay/etc/sddm.conf
Normal file
129
lxqt/desktop-overlay/etc/sddm.conf
Normal file
@@ -0,0 +1,129 @@
|
||||
[Autologin]
|
||||
# Whether sddm should automatically log back into sessions when they exit
|
||||
Relogin=false
|
||||
|
||||
# Name of session file for autologin session (if empty try last logged in)
|
||||
Session=
|
||||
|
||||
# Username for autologin session
|
||||
User=
|
||||
|
||||
|
||||
[General]
|
||||
# Halt command
|
||||
HaltCommand=/usr/bin/loginctl poweroff
|
||||
|
||||
# Input method module
|
||||
InputMethod=qtvirtualkeyboard
|
||||
|
||||
# Initial NumLock state. Can be on, off or none.
|
||||
# If property is set to none, numlock won't be changed
|
||||
# NOTE: Currently ignored if autologin is enabled.
|
||||
Numlock=none
|
||||
|
||||
# Reboot command
|
||||
RebootCommand=/usr/bin/loginctl reboot
|
||||
|
||||
|
||||
[Theme]
|
||||
# Current theme name
|
||||
Current=artix
|
||||
|
||||
# Cursor theme used in the greeter
|
||||
CursorTheme=
|
||||
|
||||
# Number of users to use as threshold
|
||||
# above which avatars are disabled
|
||||
# unless explicitly enabled with EnableAvatars
|
||||
DisableAvatarsThreshold=7
|
||||
|
||||
# Enable display of custom user avatars
|
||||
EnableAvatars=true
|
||||
|
||||
# Global directory for user avatars
|
||||
# The files should be named <username>.face.icon
|
||||
FacesDir=/usr/share/sddm/faces
|
||||
|
||||
# Theme directory path
|
||||
ThemeDir=/usr/share/sddm/themes
|
||||
|
||||
|
||||
[Users]
|
||||
# Default $PATH for logged in users
|
||||
DefaultPath=/usr/local/bin:/usr/bin:/bin
|
||||
|
||||
# Comma-separated list of shells.
|
||||
# Users with these shells as their default won't be listed
|
||||
HideShells=
|
||||
|
||||
# Comma-separated list of users that should not be listed
|
||||
HideUsers=
|
||||
|
||||
# Maximum user id for displayed users
|
||||
MaximumUid=60000
|
||||
|
||||
# Minimum user id for displayed users
|
||||
MinimumUid=1000
|
||||
|
||||
# Remember the session of the last successfully logged in user
|
||||
RememberLastSession=true
|
||||
|
||||
# Remember the last successfully logged in user
|
||||
RememberLastUser=true
|
||||
|
||||
# When logging in as the same user twice, restore the original session, rather than create a new one
|
||||
ReuseSession=false
|
||||
|
||||
|
||||
[Wayland]
|
||||
# Enable Qt's automatic high-DPI scaling
|
||||
EnableHiDPI=false
|
||||
|
||||
# Path to a script to execute when starting the desktop session
|
||||
SessionCommand=/usr/share/sddm/scripts/wayland-session
|
||||
|
||||
# Directory containing available Wayland sessions
|
||||
SessionDir=/usr/share/wayland-sessions
|
||||
|
||||
# Path to the user session log file
|
||||
SessionLogFile=.local/share/sddm/wayland-session.log
|
||||
|
||||
|
||||
[X11]
|
||||
# Path to a script to execute when starting the display server
|
||||
DisplayCommand=/usr/share/sddm/scripts/Xsetup
|
||||
|
||||
# Path to a script to execute when stopping the display server
|
||||
DisplayStopCommand=/usr/share/sddm/scripts/Xstop
|
||||
|
||||
# Enable Qt's automatic high-DPI scaling
|
||||
EnableHiDPI=false
|
||||
|
||||
# The lowest virtual terminal number that will be used.
|
||||
MinimumVT=7
|
||||
|
||||
# Arguments passed to the X server invocation
|
||||
ServerArguments=-nolisten tcp
|
||||
|
||||
# Path to X server binary
|
||||
ServerPath=/usr/bin/X
|
||||
|
||||
# Path to a script to execute when starting the desktop session
|
||||
SessionCommand=/usr/share/sddm/scripts/Xsession
|
||||
|
||||
# Directory containing available X sessions
|
||||
SessionDir=/usr/share/xsessions
|
||||
|
||||
# Path to the user session log file
|
||||
SessionLogFile=.local/share/sddm/xorg-session.log
|
||||
|
||||
# Path to the Xauthority file
|
||||
UserAuthFile=.Xauthority
|
||||
|
||||
# Path to xauth binary
|
||||
XauthPath=/usr/bin/xauth
|
||||
|
||||
# Path to Xephyr binary
|
||||
XephyrPath=/usr/bin/Xephyr
|
||||
|
||||
|
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
lxqt/desktop-overlay/etc/skel/.config/hexchat/colors.conf
Normal file
42
lxqt/desktop-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
lxqt/desktop-overlay/etc/skel/.config/hexchat/hexchat.conf
Normal file
210
lxqt/desktop-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
lxqt/desktop-overlay/etc/skel/.config/hexchat/servlist.conf
Normal file
12
lxqt/desktop-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
|
@@ -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>
|
@@ -1,18 +1,20 @@
|
||||
################ install ################
|
||||
|
||||
# default displaymanager: none
|
||||
# supported; lightdm, sddm, gdm, lxdm, mdm
|
||||
# supported: lightdm, sddm, gdm, lxdm, mdm
|
||||
displaymanager="sddm"
|
||||
|
||||
# Set to false to disable autologin in the livecd
|
||||
# autologin="true"
|
||||
|
||||
# service runlevels
|
||||
# openrc_boot=('elogind')
|
||||
# openrc_default=('acpid' 'bluetooth' 'cronie' 'cupsd' 'dbus' 'syslog-ng' 'NetworkManager')
|
||||
# start services
|
||||
# services=('acpid' 'bluetooth' 'cronie' 'cupsd' 'syslog-ng' 'NetworkManager')
|
||||
|
||||
# unset defaults to given values
|
||||
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users"
|
||||
# default group membership
|
||||
# addgroups="video,power,storage,optical,network,lp,scanner,wheel,users,log"
|
||||
|
||||
# calamares netgroups
|
||||
# netgroups_url="https://raw.githubusercontent.com/artix-linux/netgroups/master"
|
||||
|
||||
################# live-session #################
|
||||
|
||||
|
Reference in New Issue
Block a user