[memo] CentOS7.4 install on VMWare

7804 단어 centos7vmware

VMWare Install



VMWare Workstation Player for Windows 64-bit
htps : // 엔 g 엔 t 란세. 코 m / ぃ 無 x-vm

CentOS Install



CentOS Download



CentOS 7.4
htp //ftp. 그럼 st. 아 c. jp/pu b/ぃぬ x/전과 S/7.4.1708/이자 s/x86_64/
CentOS-7-x86_64-DVD-1708.iso (4.2GB)

CentOS Install



VMWare Instance Setup


CentOS Install


카테고리
품목
설정


지역 설정
날짜와 시간
아시아/도쿄

키보드
일본어

언어 지원
일본어

소프트웨어
설치 소스
로컬 미디어

소프트웨어 선택
서버(GUI 사용)

시스템
설치 대상
자동 파티션

KDUMP
무효

네트워크 및 호스트 이름
○○(호스트 PC의 네트워크 접속)로 접속

SECURITY POLICY
프로파일 선택 없음(기본값)






CentOS Setup



user add to root


# visudo

visudo
##      user    MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
##
## Allow root to run any commands anywhere
root    ALL=(ALL)       ALL
newuser ALL=(ALL)       ALL   # added user.

ntp install


$ sudo yum -y install ntp
$ sudo ntpdate ntp.nict.jp
$ sudo vi /etc/ntp.conf

/etc/ntp.conf
server 0.centos.pool.ntp.org iburst
server 1.centos.pool.ntp.org iburst
server 2.centos.pool.ntp.org iburst
↓
server ntp.nict.jp iburst
server ntp1.jst.mfeed.ad.jp iburst
server ntp2.jst.mfeed.ad.jp iburst
$ sudo systemctl start ntpd
$ sudo systemctl enable ntpd

SELinux stop


$ sudo vi /etc/selinux/config

/etc/selinux/config
SELINUX=enforcing
↓
SELINUX=disabled

SSH Setup


# sudo yum -y install openssh-server

Setup others



g++ install


$ sudo yum -y install gcc-c++

git install


$ sudo yum -y install git

history customize



~/.bashrc
# history
HISTTIMEFORMAT='%y/%m/%d %H:%M:%S '
HISTSIZE=1000000
# HISTIGNORE=history:ls:ll:df

alias



~/.bashrc
# alias
alias ll='ls -al'
alias his='history'
alias hisg='his | grep'
function hisr (){ history | awk '{print $4}' | sort | uniq -c | sort -nr | head -n 20; }

alias psa='ps aux'
alias psg='psa | grep'

# alias:git
alias g='git'
alias gpu='g pull origin'
alias gfe='g fetch origin --prune'
alias gpsh='g push origin HEAD'
alias ga='g add'
alias gan='ga -n'
alias gc='g commit -m '
alias gd='g diff'
alias gst='g status'
alias gl='g log'
alias gsub='g submodule'
alias gb='g branch'
alias gba='gb -a'
alias gbr='gb -r'
alias gco='g checkout'
function gdel (){ gb -D $1; g push --delete origin $1; }
function gcp (){ gb $1; gco $1; gba; }
alias gconf='git diff --name-only --diff-filter=U'

좋은 웹페이지 즐겨찾기