Hosts書き換え - samidevjp/Tips GitHub Wiki

ターミナルでhostsファイルを編集する方法

ターミナルでhostsファイルを開き、自身のPCに設定してあるパスワードを入力。

% sudo vim /private/etc/hosts
Password: 自身のPCに設定してあるパスワード

初期のhostsファイルには以下のような文言が記載されている。

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##

「i」を打ち込み、インサートモード(編集可能モード)に。

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
~
~
~
~
~
-- INSERT --

末尾に「IPアドレス+ホスト名(ドメイン名)」を入力。IPアドレスは1234.5.678.9、ホスト名はtest.comなど。

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
1234.5.678.9 test.com
~
~
~
~
~
-- INSERT --

入力後、escキーを押下し「:wq」で保存して完了。