Mnemosyne

Linux, 機械学習について個人的なメモを綴っていきます

Cyborg 初期設定メモ

f:id:free6464:20180308224950p:plain
kali linuxよりすごい?!osであるcyborg linuxをインストール&初期設定メモ

今回使用したバージョン

Cyborg Hawk v 1.1

デフォルトのユーザ名とパスワード

User: cyborg
pw: toor

最新の状態にする

・cyborgはubuntu14,04を基に作られている?
・ubuntu16.04にアップグレードするか問われるがアップグレードしないこと

インストール後、

apt update -y
apt upgrade -y
reboot

全ての問いにEnterで答える。

その後、mdmがクラッシュして壁紙が表示されなくなった。
解決策として

dpkg --configure -a

sshを導入してリモートで操作できるようにする

sshをインストール。その際以下のエラーが表示された

cannot configure (current status `half-installed')
dpkg: dependency problems prevent configuration of libmono-system-xml4.0-cil:
libmono-system-xml4.0-cil depends on libmono-system4.0-cil (>= 3.2.8); however:
Package libmono-system4.0-cil is not installed.

このエラーを解決させる為に以下のコマンドを実行することで解決した

apt install libmono-system4.0-cil
apt install ssh

sshの設定ファイルは /etc/ssh/sshd_configにあるので
PortとPermitLoginを変更。

アドレスを固定する

/etc/network/interfaces

ubuntu14.04を基にされているのでubuntu同様設定する

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
 
# The loopback network interface
auto lo
iface lo inet loopback
 
# The primary network interface
auto eth0
iface eth0 inet static
address [設定したいIPアドレス]
netmask [ネットマスク]
gateway [ゲートウェイ]
dns-nameservers [ネームサーバ]
 
# This is an autoconfigured IPv6 interface
iface eth0 inet6 auto