2017年2月8日水曜日

CentOS7 インストール

ソフトウェアの選択:サーバ(GUI使用)
アドオン:  仮想クライアント
               仮想化ハイパーバイザー
               仮想化ツール

パーティション設定: LVM
                                 /home 9536   LVM xfs
                                 /boot 1024MB
                                 / 78.24GB  LVM xfs
                                 swap11.44 GB
                           
ネットワークとホスト名
ホスト名:managesv1n

# hostnamectl set-hostname managesv1n


# nmcli connection modify ens33 ipv4.method manual ipv4.addresses 192.168.25.199/24 
# nmcli connection modify ens33 ipv4.gateway 192.168.25.254
# nmcli connection modify ens33 ipv4.dns 192.168.25.254

# yum -y install epel-release
# yum -y update

自動LAN起動
# nmcli connection modify ens33 connection.autoconnect yes
確認
nmcli -p connection show ens33

SELinx
# vi /etc/selinux/config

SELINUX=permissive

SELinux Troubleshooterで対応後、enforcingに戻す。


VMwareに登録して、

VMware Workstation 12.5 Player for Linux 64-bitをダウンロード
# sh VMware-Player-12.5.1-4543065.x86_64.bundle
プロダクトキー未入力でお試し使用。
起動するとgccやkernel headers がないと言われる。
# yum -y install gcc
# yum -y install kernel-devel-$(uname -r)

その他
1)VMware-toolsインストール
2)SELINUX=enforcing
3) # yum install ntfs-3g


VMWARE uninstall

# sh VMware-Player-12.5.7-5813279.x86_64.bundle --uninstall-component=vmware-workstation











0 件のコメント:

コメントを投稿

シャットダウン時の後処理 (shutdown)

# vi /etc/systemd/system/drop.service [Unit] Description= stop httpgwd DefaultDependencies=no Before=shutdown.target RefuseManualStart=true ...