0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Kali LinuxのVMインストール

Last updated at Posted at 2024-10-02

VMをダウンロード

https://www.kali.org/get-kali/#kali-installer-images
からVirtualBoxのイメージをダウンロードする。

イメージの展開

イメージを右クリックして、「すべて展開」を選択する。

仮想マシンを作成

展開したフォルダを仮想マシンのフォルダに移動する。
C:\Users<ユーザー名>\VirtualBox VMs
VirtualBoxの追加をクリックする。
移動した仮想マシンファイルを選択する。

アップデート

Kali Linuxを起動し、ユーザー名:kali、パスワード:kaliでログインする。
ルートのターミナルを起動し、以下のコマンドを実行する。

apt update
apt upgrade

ネットワーク設定

以下のネットワーク設定を行う。

vim /etc/network/interfaces

以下を追加する。

allow-hotplug eth0
iface eth0 inet dhcp

allow-hotplug eth1
iface eth1 inet static
address <IPアドレス>
netmask 255.255.255.0

キーボード設定

日本語キーボードに設定する。

dpkg-reconfigure keyboad-configuration

Generic 105-key PCを選択する。
Japaneseを選択する。
The Default for keyboard layoutを選択する。
No compose keyを選択する。
Noを選択する。

タイムゾーンを設定

タイムゾーンを日本にする。

dpkg-reconfigure tzdata

Asiaを選択する。
Tokyoを選択する。

再起動

シャットダウンする。
VirtualBoxの設定をクリックする。
ネットワークを選択する。
アダプター1をNATにする。
アダプター2を有効化して、ホストオンリーアダプターに設定する。
ホストオンリーアダプターがない場合は、ツールからホストオンリーアダプターをDHCP無しで作成する。

追記

一時的にApacheを有効にする場合

service apache2 restart

一時的にOpenssh Serverを有効にする場合

service ssh restart
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?