LoginSignup
2
2

More than 5 years have passed since last update.

CentOS7を入れたらまずやること(初期設定)

Posted at

一般ユーザーからsudoできるように設定

# usermod -G wheel [一般ユーザー]

パッケージのアップデート

$ sudo yum -y update

SELinuxの無効化

$ sudo setenforce 0
$ sudo vi /etc/sysconfig/selinux
SELINUX=enforcing

SELINUX=disabled

ファイヤーウォール停止

$ sudo systemctl stop firewalld
$ sudo systemctl disable firewalld

システム再起動

$ sudo reboot

参考サイト

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2