SUBPAGE MENU
arch_after_installation
#
Last modified
16_07_26
#
############################################
#
# CONTENT
#
############################################
This is a very basic configuration for newly installed arch linux.
0. Font configuration:
* optional step, in case in which your font is too small
* if you have internet connection download terminus font with:
curl https://raw.githubusercontent.com/mikbuch/mikbuch.github.io/master/linux/files_linux/arch_config/ter-u32b.psf.gz --output /usr/share/kbd/consolefonts/ter-u32b.psf.gz
* use command: setfont /usr/share/kbd/consolefonts/ter-u32b.psf.gz
* create /etc/vconsole.conf containing settings with the following command: echo 'FONT=ter-u32b.psf.gz' >> /etc/vconsole.conf
1. Bash confuguration:
* if you have internet connection dowload configuration files:
curl https://raw.githubusercontent.com/mikbuch/mikbuch.github.io/master/linux/files_linux/arch_config/.bash_profile --output ~/.bash_profile
curl https://raw.githubusercontent.com/mikbuch/mikbuch.github.io/master/linux/files_linux/arch_config/.bashrc --output ~/.bashrc
* note: .bash_profile is run at startup and it directs to .bashrc
* if you don't have internet create ad hoc bash config files:
echo [[ -f ~/.bashrc ]] && . ~/.bashrc >> ~/.bash_profile
echo l='ls -l --color=auto' >> ~/.bashrc
2. Network configuration:
* if you have wired connection it should be all set up
* wireless connection:
wpa_supplicant
wifi-menu -o
ntctl start /etc/netctl/interface
e.g. netctl start wlp1s0-I241WS-F4A54DF6
ntctl enable /etc/netctl/interface
3. Git directory creation and configuration files download:
* recommended location for git main directory is ~/git, so: mkdir ~/git
* git clone https://github.com/mikbuch/mikbuch.github.io
4. Brightness setting
5. VIM configuration:
6. TMUX configuration:
############
1. Basic bash ls alias:
command:
Load bash settings.
command:
############
############
2. Install vim:
command:
############
3. Add 'syntax on', 'set nu!' and 'set hlsearch' to your ~/.vimrc
4. Install tmux (pacman -S tmux). Trouble: need UTF-8, has ASCII. Solution: see point 5. - locale settings.
5. Uncomment 'en_US.UTF-8 UTF-8' line in your '/etc/locale.gen' file (line163 in my case). Then load change with 'locale-gen' command.
6. Bash configuration: add "alias t='cd /tmp'". Source ~/.bash_profile
Note: use .bash_profile, not .bashrc because .bashrc is not loaded at startup
7. Turn of annoying PC spearker beeps with 'rmmod pcspkr' command.
Add this command to your .bash_profile to make it run at login
8. Run 'pacman -Sy' command. Some packages are unavailable without it.
9. Install internet browser: 'pacman -S lynx'.
10. Install python: 'pacman -S python'.
11. Install ipython: 'pacman -S ipython'.
12. Install kbd package for consolefonts managament 'pacman -S kbd'.
13. Install terminus fonts package for consolefonts 'pacman -S terminus-font'.
14. Set bigger font 'setfont /usr/share/kbd/consolefonts/ter-u20b.psf.gz'
Add this command to your .bash_profile to make it run at login
15. Create ~/git directory, sync git package: 'pacman -S git'
16. Configure your github "git config --global -edit" or "git config --global user.email "sth@somewhere.com""
17. TMUX configuration. Create .tmux_conf "vim ~/.tmux_conf" or download tmux configuration file with "curl https://raw.githubusercontent.com/mikbuch/mikbuch.github.io/master/linux/files_linux/arch_config/.tmux_config --output ~/.bash_profile"
18. Install desktop envirnoment: "packman -S gamin lxde-common"
############################################
#
# SOFTWARE VERSION INFO
#
############################################
Description: Debian GNU/Linux 7.7 (wheezy)
#1 SMP Debian 3.16.7-ckt2-1~bpo70+1 (2014-12-08)
3.16.0-0.bpo.4-amd64
Aspire S7-392
############
command:
output:
--------------------------------
example_output
--------------------------------
############
############################################
#
# TROUBLESHOOTING
#
############################################
############
Trouble no. 1:
xyz
Solution:
ghi
############
############
Trouble no. 2:
abc
Solution:
def
############
############################################
#
# SOURCES
#
############################################
############
Source title no. 1
source_no_1_url
############
############
Source title no. 2
source_no_2_url
############
########################