반응형
Ubuntu OS를 처음 설치하고 부팅하고, 아래와 같은 작업을 실행하여 App 설치하고 초기 설정 작업을 한다.
## root 계정 암호 설정하기
$ sudo passwd root
$ apt update -y
$ apt install -y vim htop iftop git curl openssh-server tree lrzsz terminator
/etc/ssh/sshd_config 파일에서 Root Login Permit 설정하기
## ... 파일을 열고 직접 수정하고, 아래 명령을 수행 ...
$ systemctl restart sshd
.vimrc 파일 수정
$ cat << EOF >> ~/.vimrc
color koehler
set tags=./tags,./my/proj/tags
set tabstop=4 softtabstop=4 shiftwidth=4
set expandtab
set autoindent
EOF
Network 설정
$ cat << EOF >> /etc/network/interface
auto ens3
iface ens3 inet static
address 10.10.12.30
netmask 255.255.255.0
gateway 10.10.12.1
dns-nameservers 8.8.8.8 8.8.4.4
auto ens4
iface ens4 inet static
address 192.168.1.201
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4
EOF
'Ubuntu' 카테고리의 다른 글
sudoers 설정 (암호 입력 없이 root 사용자 권한 얻기) (0) | 2021.07.10 |
---|---|
Configure DNAT(Port Forward) for KVM (to connect into VM from outer network) (0) | 2021.07.10 |
resolv.conf on Ubuntu (0) | 2021.07.10 |
Sharing Desktop (원격 데스크탑) on Ubuntu (0) | 2021.07.10 |
Install KVM and OVS on Ubuntu 22.04 (2) | 2021.07.10 |