-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_arch.sh
46 lines (41 loc) · 980 Bytes
/
install_arch.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# =========================================
# install rfriends3 for arch
#
#useradd -m user
#passwd user
#pacman -Syu
#pacman -S sudo vi git
#visudo
#user ALL=(ALL) ALL
# login user
# =========================================
# Rfriends (radiko radiru録音ツール)
# 1.0 2025/01/24 new
ver=1.0
# -----------------------------------------
echo start $ver
echo
# -----------------------------------------
export distro="arch"
export cmd="pacman -S --noconfirm"
#export user=user
#export group=user
#export port=8000
#export homedir=`sh -c 'cd && pwd'`
#export PREFIX=""
export optlighttpd="on2"
export optsamba="on"
export optvimrc="on"
export lighttpd="lighttpd"
export smbd="smb"
export atd="atd"
export cron="cronie"
#
sudo pacman -Sy --noconfirm
sudo pacman -Syu --noconfirm
#sudo ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
timedatectl set-timezone Asia/Tokyo
sh common.sh 2>&1 | tee common.log
# -----------------------------------------
# finish