PKGBUILDs/core/filesystem/archlinux.7.txt

81 lines
2.8 KiB
Plaintext
Raw Normal View History

2012-09-14 01:03:58 +00:00
/////
vim:set ts=4 sw=4 syntax=asciidoc noet:
/////
archlinux(7)
============
NAME
----
archlinux - basic configuration
SYNOPSIS
--------
Overview of the basic configuration of Arch Linux.
DESCRIPTION
-----------
Arch Linux exposes the user to the system without hiding any details. This manpage gives a
brief overview of the configuration files that should be set up on a fresh install.
2012-10-26 12:46:56 +00:00
SYSTEM SERVICES[[S]]
--------------------
System services to be started at boot can be enabled using 'systemctl enable <name>.service'. To view
available services use 'systemctl list-unit-files'.
2012-09-14 01:03:58 +00:00
HOSTNAME[[H]]
-------------
2012-10-26 12:46:56 +00:00
The hostname of the machine can be set using 'hostnamectl set-hostname <hostname>'. It will then be
written to /etc/hostname.
2012-09-14 01:03:58 +00:00
LOCALIZATION[[L]]
-----------------
Various locales may be enabled in /etc/locale.gen, and generated by locale-gen. The system-wide locale to be used
2012-10-26 12:46:56 +00:00
can be configured in /etc/locale.conf. These settings can be overridden on a per-user basis by keeping a
user-specific locale.conf in $HOME/.config/locale.conf. The user-specific file will take precedence if it exists.
2012-09-14 01:03:58 +00:00
VIRTUAL CONSOLE[[V]]
--------------------
The virtual console is configured in /etc/vconsole.conf. It allows you to set a font and a keyboard layout, among
other things. Note that these settings only apply to the console, and not if you use X.
TIME[[T]]
---------
2012-10-26 12:46:56 +00:00
The local timezone is configured by calling 'timedatectl set-timezone <Region/City>'. A *symlink* is then created
from /etc/localtime to the correct zoneinfo file under /usr/share/zoneinfo/. E.g.,
2012-09-14 01:03:58 +00:00
2012-10-26 12:46:56 +00:00
/etc/localtime -> ../usr/share/zoneinfo/Europe/Paris
2012-09-14 01:03:58 +00:00
The real-time clock, which keeps track of time when the computer is off, can be configured to either
2012-10-26 12:46:56 +00:00
be in UTC or in localtime by calling 'timedatectl set-local-rtc <false|true>'. The default is UTC.
2012-09-14 01:03:58 +00:00
FILESYSTEMS[[F]]
----------------
Filesystems are configured in /etc/fstab, and encryption mappings are configured in /etc/crypttab.
INITRAMFS[[R]]
--------------
The initramfs is generated by mkinitcpio, and can be configured in /etc/mkinitcpio.conf.
PACKAGE MANAGER[[P]]
--------------------
The package manager, pacman, is configured in /etc/pacman.conf.
BOOTLOADER[[B]]
---------------
GRUB's configuration is generated from /etc/default/grub by grub-mkconfig. Syslinux is configured in /boot/syslinux/syslinux.cfg
MODULES[[M]]
------------
Most modules should be loaded on-demand. Modules to be unconditionally loaded at boot can be specified in /etc/modules-load.d/,
and modules to be blacklisted from auto-loading can be configured in /etc/modprobe.d/.
SEE ALSO
--------
2012-10-26 12:46:56 +00:00
systemctl(1), hostnamectl(1), hostname(5), locale.conf(5), vconsole.conf(5), timedatectl(1), timezone(3), hwclock(8), fstab(5),
crypttab(5), mkinitcpio(8), pacman(8), pacman.conf(5), grub-mkconfig(8), syslinux(1), modules-load.d(5), modprobe.d(5)
2012-09-14 01:03:58 +00:00
AUTHORS
-------
Written by Tom Gundersen.