Mint19.1 32bit

 2023年までサポート

-----------------------
同型PC でインストール、初期設定後、モニター故障のこのPCに、DISK 移動

有線ラン 192.168.2.0 ネットワーク 
IP アドレス 192.168.2.104 (ルーターで確認)
(有線を接続すると、WiFi より、こちらが先に接続される)

192.168.2.104 リモートSSH接続 

x11vnc 起動
root@inspiron2:~# x11vnc -auth guess -geometry 1270x900


192.168.2.104 vncデスクトップ接続
キーボード・・・大文字入力になってしまう
shift キーを押しながら入力で小文字
coco2@inspiron2:~$ su -

su: 認証失敗


ssh 接続では、
coco2@inspiron2:~$ su -
パスワード:
root@inspiron2:~#


OS インストール時のキーボードと、ディスク移動後のキーボードが違うためのエラーらしい。
再起動してキーボードを確認

VNCデスクトップでの文字入力がデフォルトで小文字になった
大文字入力はshift キーを押しながら入力
shift キーを離して小文字入力に変わらない場合はCaps Lock キーを押してから入力

日本語入力切り替えは Ctrl + スペースキー



ウェブブラウザ chromium をSynapticで検索してインストール


WiFi 接続設定 ・・・設定 - ネットワーク 

root@inspiron2:~# ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.2.104 netmask 255.255.255.0 broadcast 192.168.2.255
inet6 fe80::8395:16cf:2a1c:1a77 prefixlen 64 scopeid 0x20<link>
inet6 2405:6585:c600:1100:44d2:917f:13c0:8aa5 prefixlen 64 scopeid 0x0<global>
inet6 2405:6585:c600:1100:d43b:8db3:209a:7fec prefixlen 64 scopeid 0x0<global>
ether 00:14:22:91:0d:71 txqueuelen 1000 (イーサネット)
RX packets 284081 bytes 116276844 (116.2 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 386113 bytes 461178803 (461.1 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 18

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (ローカルループバック)
RX packets 2202 bytes 213513 (213.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 2202 bytes 213513 (213.5 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

wlp2s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.4 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 2405:6585:c600:1100:152d:bd75:17ce:cd24 prefixlen 64 scopeid 0x0<global>
inet6 2405:6585:c600:1100:2d9f:de8c:bcb9:1741 prefixlen 64 scopeid 0x0<global>
inet6 fe80::366c:c8be:2791:6c6 prefixlen 64 scopeid 0x20<link>
ether 00:16:6f:67:9a:b0 txqueuelen 1000 (イーサネット)
RX packets 76 bytes 9536 (9.5 KB)
RX errors 5 dropped 5 overruns 0 frame 0
TX packets 234 bytes 34085 (34.0 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


192.168.1.4は、別PCで固定IPとしているので、
空いているIP アドレス192.168.1.7 で固定

WiFi 接続設定 ・・・設定 - ネットワーク - WiFi
ipv4 設定 192.168.1.7



interfaces 固定IPネットワーク 設定

root@inspiron2:~# vi /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
~
以下追加
auto eth0
iface eth0 inet static
address 192.168.2.104
netmask 255.255.255.0
broadcast 192.168.2.255
gateway 192.168.2.1
dns-nameservers 192.168.2.1

ethtool_opts="wol g
           // wakeonlan の設定


root@inspiron2:~# vi /etc/hosts
127.0.0.1 localhost
#127.0.1.1 inspiron2
192.168.2.104 inspiron2
192.168.1.3 hayato.falcon21.space

# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters


root@inspiron2:~# systemctl restart networking

WiFi 接続設定 ・・・設定 - ネットワーク 
ipv4 設定 192.168.1.7
WiFi アイコンをダブルクリックでWiFi 再起動
(固定IPが確立されると他のWiFi 有効デバイス名は消える)

root@inspiron2:~# ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.2.104 netmask 255.255.255.0 broadcast 192.168.2.255
inet6 2405:6585:c600:1100:b0c8:e464:19e8:7a5e prefixlen 64 scopeid 0x0<global>
inet6 2405:6585:c600:1100:44d2:917f:13c0:8aa5 prefixlen 64 scopeid 0x0<global>
inet6 fe80::8395:16cf:2a1c:1a77 prefixlen 64 scopeid 0x20<link>
ether 00:14:22:91:0d:71 txqueuelen 1000 (イーサネット)
RX packets 13670 bytes 2335722 (2.3 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 19584 bytes 23708348 (23.7 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 18

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (ローカルループバック)
RX packets 929 bytes 68401 (68.4 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 929 bytes 68401 (68.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

wlp2s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.7 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::366c:c8be:2791:6c6 prefixlen 64 scopeid 0x20<link>
inet6 2405:6585:c600:1100:1dc7:d1dc:a7f7:bd48 prefixlen 64 scopeid 0x0<global>
inet6 2405:6585:c600:1100:2d9f:de8c:bcb9:1741 prefixlen 64 scopeid 0x0<global>
ether 00:16:6f:67:9a:b0 txqueuelen 1000 (イーサネット)
RX packets 42 bytes 3794 (3.7 KB)
RX errors 2 dropped 2 overruns 0 frame 0
TX packets 84 bytes 9109 (9.1 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


----------------------------------


ethtool wakeonlan 設定

有線アドレス固定IP設定・・・・・・設定 - ネットワーク -有線 
ipv4 設定 192.168.2.104

root@inspiron2:~# vi /etc/hosts
追加
192.168.2.104  inspiron2


wakeonlanを受け付けるツールethtoolをインストール
root@inspiron2:~# apt-get install ethtool

wakeonlan受付設定
root@inspiron2:~# ethtool -s eth0 wol g

確認
root@inspiron2:~# ethtool eth0 | grep Wake
Supports Wake-on: g
Wake-on: g    ・・・・有効


192.168.2.101 centos7サーバーPCから、このPCへ起動コマンド
[root@falcon21 ~]# ether-wake -i enp0s25 00:14:22:91:0d:71
起動できない

BIOSにwakeup 設定項目がない為か?




このPCから192.168.2.110 00:19:21:64:8f:6c Emachines T5233を起動
root@inspiron2:~# apt-get install wakeonlan

root@inspiron2:~# wakeonlan 00:19:21:64:8f:6c
Sending magic packet to 255.255.255.255:9 with 00:19:21:64:8f:6c
起動成功

 

投票数:1 平均点:10.00

 
Back to Top