私はラズベリーパイ A+とラズパイ ジェシー. 実行した変更が反映されないという非常に奇妙なエラーが発生しています。しばらくして元に戻った。
例1: /etc/apt/sources.list.d ファイルから collabora.list と raspi.list を削除しました。正常に動作します (rm でエラーは発生せず、ディレクトリは空になります)。しかし、しばらくすると、次のメッセージが表示されます。
$ ls -al
ls: cannot access collabora.list: No such file or directory
ls: cannot access raspi.list: No such file or directory
total 8
drwxr-xr-x 2 root root 4096 Apr 4 09:57 .
drwxr-xr-x 6 root root 4096 Dec 21 2016 ..
-????????? ? ? ? ? ? collabora.list
-????????? ? ? ? ? ? raspi.list
例2: /etc/sysctl.conf に次の 2 行を追加しました:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
再び、しばらくは機能しました。そして突然、IPv6 が再び表示され、ファイルに私の行がなくなったことがわかりました。
$ grep ipv6 /etc/sysctl.conf
#net.ipv6.conf.all.forwarding=1
#net.ipv6.conf.all.accept_redirects = 0
#net.ipv6.conf.all.accept_source_route = 0
例3: /etc/network/interfaces に DNS サーバーを追加しました。
dns-nameservers 9.9.9.9 8.8.8.8
うまくいきました。しばらくして、名前解決ができなくなったことに気付きました。ファイルに戻ると、その行はもうそこにありませんでした。
さて、ここまで読んで、私が頭がおかしいのか、正しいシステムでファイルを編集しなかったのかと思うでしょう。では、もう一度やり直しましょう。
cat /etc/network/interfaces
auto lo
iface lo inet loopback
wireless-power off
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.0.15
gateway 192.168.0.254
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
wpa-ssid "blah"
wpa-psk MYSECRET
名前解決がないことを証明しましょう:
$ ping google.com
ping: unknown host google.com
$ ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=57 time=21.4 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=57 time=20.2 ms
次に、/etc/network/interfaces を編集して DNS サーバーを追加します。
$ sudo -s
[sudo] password for user:
root@wipi:/etc/apt/sources.list.d# vi /etc/network/interfaces
# grep dns /etc/network/interfaces
dns-nameservers 9.9.9.9 8.8.8.8
今私はリブート新しい構成をロードします (ifdown、ifup、true を実行できます)。
$ ssh [email protected]
Last login: Wed Dec 21 22:17:34 2016 from cray3.home
user@wipi ~ $
名前解決は可能です:
$ ping google.com
PING google.com (216.58.210.206) 56(84) bytes of data.
64 bytes from mrs04s09-in-f206.1e100.net (216.58.210.206): icmp_seq=1 ttl=55 time=21.2 ms
64 bytes from mrs04s09-in-f206.1e100.net (216.58.210.206): icmp_seq=2 ttl=55 time=21.3 ms
次に、パッケージのソースを更新します。apt-getアップデートコラボラが利用できないため、完全には機能しません。
W: Failed to fetch http://raspberrypi.collabora.com/dists/jessie/rpi/binary-armhf/Packages 404 Not Found [IP: 2a00:1098:0:82:1000:25:2eeb:e3e2 80]
だから、それを削除します:
$ sudo rm collabora.list
今回は他のエラーもいくつか発生します (下記参照)。
W: Failed to fetch http://archive.raspberrypi.org/debian/dists/jessie/main/binary-armhf/Packages Hash Sum mismatch
名前解決がまだあるかどうかもテストします。この archive.raspberrypi.org はソースの raspi.list にあるので、raspi.list を削除して再更新します。
$ sudo rm raspi.list
$ sudo apt-get update
しかし、apt-get update の場合は状況がますます悪化しています。
W: Failed to fetch http://mirrordirector.raspbian.org/raspbian/dists/jessie/main/binary-armhf/Packages Hash Sum mismatch
W: Failed to fetch http://mirrordirector.raspbian.org/raspbian/dists/jessie/non-free/binary-armhf/Packages Hash Sum mismatch
そして、もう一度pingを試みると、バタン!!名前解決なし:
$ ping google.com
ping: unknown host google.com
サイドノート:
$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 15G 5.1G 9.0G 37% /
devtmpfs 87M 0 87M 0% /dev
tmpfs 91M 0 91M 0% /dev/shm
tmpfs 91M 8.5M 83M 10% /run
tmpfs 5.0M 4.0K 5.0M 1% /run/lock
tmpfs 91M 0 91M 0% /sys/fs/cgroup
/dev/mmcblk0p1 56M 21M 36M 38% /boot
tmpfs 19M 0 19M 0% /run/user/1001
$ mount
dev/mmcblk0p2 on / type ext4 (rw,noatime,data=ordered)
...
/dev/mmcblk0p1 on /boot type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro)
$ uname -a
Linux wipi 4.4.38+ #938 Thu Dec 15 15:17:54 GMT 2016 armv6l GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 8.0 (jessie)
Release: 8.0
Codename: jessie
システムは SD カード上にあります。電源の問題はありません。Wi-Fi ドングル経由でネットワークに接続します。
何かアイデアがあれば教えてください。