[HowTo] Ubuntu 서버 구성
본문은 비정기적으로 갱신된다.
(1) Enable SSH
Install ssh:
sudo apt-get install openssh-server
sshd 서비스 다시 시작
sudo service ssh restart
(2) 정적 Static IP 설정
sudo nano /etc/NetworkManager/NetworkManager.conf
Change the value of managed from false
to true
Then reboot
Linux sudo nano /etc/network/interfaces
Add: auto eth0
iface eth0 inet static
address 172.26.20.2
gateway 172.26.1.1
netmask 255.255.0.0
dns-nameservers 47.88.13.89
dns-search dev.rokid-inc.com
sudo ifdown -a && sudo ifup -a
(3) 명령행 부트 to CLI(not GUI)로 전원 켜기 시작
sudo cp -n /etc/default/grub /etc/default/grub.orig
sudo nano /etc/default/grub
#GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
GRUB_CMDLINE_LINUX=”text”
GRUB_TERMINAL=console
sudo update-grub
(4) 시스템 구성 요소 업데이트, 기본 도구 설치
sudo apt-get upgrade
sudo apt-get update
sudo apt-get install -y gawk
sudo apt-get install -y vim
sudo apt-get install -y screen
sudo apt-get install -y nmap
sudo apt-get install -y openssh-server
sudo apt-get install -y curl
sudo apt-get install -y git
sudo apt-get install -y openssh-server vim screen curl git nmap gawk
Note: VI is installed by default. But, if you don't install vim, there will be some problem when using vi to edit files. For example, in Insert mode, pressing arrow keys will generate ABCD characters instead of moving cursors around.
sudo vi ~/.vimrc
sudo vi ~/.exrc
For each file above, add
set nocompatible
in the file. (5) 공개 키 인증 구성
ssh-copy-id -i .ssh/id_rsa.pub -p22 yourusername@dest_server_ip
sudo nano /etc/ssh/sshd_config
yes
without-password
로 설정합니다(아래 참조).no
PermitRootLogin
in your /etc/ssh/sshd_config
no
: you cannot use root to login over ssh at all without-password
: root login is allowed but only using a key, not a password. yes
: both key and password are allowed. sudo /etc/init.d/ssh restart
OR
sudo service sshd restart
//For CentOS 7
systemctl restart sshd.service
(6) SSH 로그인 시 알림 메시지 수정
SSH 로그인 시 다음 두 파일에서 시작 정보 설정
6.1 Banner
/etc/issue.net
(for BANNER)/etc/ssh/sshd_config
에서 주석을 취소해야 함Banner /etc/issue.net
6.2 Motd
/etc/motd
(for Motd)/etc/ssh/sshd_config
에서 설정PrintMotd yes
PrintMotd yes
PrintMotd no
로 변경하면 해결됩니다.상세한 상황은 시험을 기다리고 있다.(7)hostname 수정 영구 적용
sudo nano /etc/hosts
sudo nano /etc/hostname
sudo reboot
(8) 설치, 스크린 사용
sudo apt-get install screen
screen
repo sync
terminal을 닫을 수 있습니다. 다음에 다시 열 때 이sessionscreen -list
screen -r session_id
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.