Benutzer-Werkzeuge

Webseiten-Werkzeuge


linux:arch

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Nächste Überarbeitung
Vorhergehende Überarbeitung
linux:arch [2013-11-18 17:11] – angelegt fzaplinux:arch [2019-02-14 17:38] (aktuell) – [Systemrettung chrooten] fzap
Zeile 1: Zeile 1:
-====== Archlinux ======+====== Archlinux-Spickzetttel ====== 
 + 
 +===== Partitionierung =====   
 +<code> 
 +UEFI mit LVM, dm-crypt/LUKS 
 +                                                                    
 ++-----------------------------+ +----------------------+----------------------+----------------------+ 
 +| UEFI System Partition (USP) | | LVM                  | LVM                  | LVM                  | 
 +|                             | | logical-vol-1        | logical-vol-2        | logical-vol-3        | 
 +|  /boot                      | | /dev/mapper/ssd-swap | /dev/mapper/ssd-root | /dev/mapper/ssd-home | 
 +|  min. 512 MB                | +----------------------+----------------------+----------------------+ 
 +|  FAT32                      | |                       LUKS encrypted partition                     | 
 +|  /dev/sdaX                  | |                                /dev/sdbY                           | 
 ++-----------------------------+ +--------------------------------------------------------------------+ 
 +</code> 
 ===== Hilfe ===== ===== Hilfe =====
-  * https://wiki.archlinux.org {EN} +  * https://wiki.archlinux.org 
-  * https://wiki.archlinux.de {DE} +  * https://wiki.archlinux.de 
-  * https://bbs.archlinux.org {EN} +  * https://bbs.archlinux.org 
-  * https://bbs.archlinux.de {DE}+  * https://bbs.archlinux.de  
 +===== X Starten ohne Displaymanager===== 
 + 
 +https://bbs.archlinux.org/viewtopic.php?pid=971168#p971168 
 + 
 +<code bash> 
 +# --- window manager --- 
 +# i.e. usage: WM=ob startx for openbox 
 + 
 +DEFAULT_SESSION=i3 
 +case $WM in 
 +  ob) 
 +    dbus-launch --exit-with-session openbox-session 
 +    ;; 
 + 
 +  *) 
 +    dbus-launch --exit-with-session $DEFAULT_SESSION 
 +   ;; 
 +esac 
 +</code> 
 +===== Home directory organisieren ===== 
 + 
 +http://www.splitbrain.org/blog/2008-02/27-keeping_your_home_directory_organized 
 +<code bash> 
 +export TD="$HOME/tmp/`date +'%Y-%m-%d'`" 
 +td(){ 
 +    td=$TD 
 +    if [ ! -z "$1" ]; then 
 +        td="$HOME/tmp/`date -d "$1 days" +'%Y-%m-%d'`"; 
 +    fi 
 +    mkdir -p $td; cd $td 
 +    unset td 
 + 
 +</code>  
 + 
 +===== consolefont wird nicht umgestellt  ===== 
 +Grafikkartenmodul vor dem boot hook laden  
 + 
 +in ''/etc/mkinintcpio.conf'' 
 +<code bash> 
 +MODULES="radeon"   
 +</code> 
 +für AMD GraKa 
 + 
 +<code bash> 
 +MODULES="i915"   
 +</code> 
 +für Intel GraKa 
 +===== Schriftbild verbessern ===== 
 + 
 +in ''/etc/fonts/local.conf'' anlegen  
 +<file xml local.conf> 
 +<?xml version="1.0"?> 
 +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> 
 +<fontconfig> 
 +    <match target="font"> 
 +        <!-- Enable normal hinting --> 
 +        <edit name="hinting" mode="assign"> 
 +            <bool>true</bool> 
 +        </edit> 
 +        <!-- Enable hintstyle as hintslight --> 
 +        <edit name="hintstyle" mode="assign"> 
 +            <const>hintslight</const> 
 +        </edit> 
 +        <!-- Enable anti-aliasing --> 
 +        <edit name="antialias" mode="assign"> 
 +            <bool>true</bool> 
 +        </edit> 
 +        <!-- Enable sub-pixel rendering --> 
 +        <edit name="rgba" mode="assign"> 
 +            <const>rgb</const> 
 +        </edit> 
 +        <!-- Enable LCD filter --> 
 +        <edit name="lcdfilter" mode="assign"> 
 +            <const>lcddefault</const> 
 +        </edit> 
 +    </match> 
 +</fontconfig> 
 +</file> 
 + 
linux/arch.1384791108.txt.gz · Zuletzt geändert: 2014-05-07 10:53 (Externe Bearbeitung)