投稿

2016の投稿を表示しています

マルチブートPCでの時刻合わせ

マルチブートPCでの時刻合わせ 設定方法が変更されました。「 /etc/default/rcS」は Ubuntu 17.04、Debian 9 (Stretch)  にはありません。 設定はコマンドで行います。 $  sudo timedatectl set-local-rtc true  (true または 1) 設定結果の確認(status 引数は省略可能) $ timedatectl status       Local time: 金 2017-06-30 00:18:54 JST   Universal time: 木 2017-06-29 15:18:54 UTC         RTC time: 金 2017-06-30 00:18:54        Time zone: Asia/Tokyo (JST, +0900)  Network time on: yes NTP synchronized: yes  RTC in local TZ: yes 「RTC」が「yes」になっていれば、Local Time が利用されている状態です。 下記の Warning が出ますが、Local Time でないと、Windows 10 は上手く設定できませんので、止むを得ずマルチブートのPCで使うLinuxの方も  Local Time  で揃えます。 Warning: The system is configured to read the RTC time in the local time zone.          This mode can not be fully supported. It will create various problems          with time zone changes and daylight saving time adjustments. The RTC          time is never updated, it relies on external facilities to maintain it.          If at all possible, use RTC in UTC by calling          &

Debian 8 (jessie)、Ubuntu 15.04 (Vivid Vervet) で起動時に a start job running is for dev-disk-uuid xxxxx エラーがでる件

/etc/fstabに定義されている swap パーティションの uuid が古くなってます。 (1) swap の uuid を確認 swapパーティションをsda6 にしている場合 ------------------------------- $ ls -l /dev/disk/by-uuid | grep sda6 lrwxrwxrwx 1 root root 10  6月 12 08:39 13fe0bbc-cb67-4ff8-ab0c-5d1f3ed79e09 -> ../../sda6 ------------------------------- UUID が 13fe0bbc-cb67-4ff8-ab0c-5d1f3ed79e09 であることが分かります。 (2)fstabを編集 UUID 修正します。 ------------------------------- $ sudo vi /etc/fstab # swap was on /dev/sda6 during installation UUID=13fe0bbc-cb67-4ff8-ab0c-5d1f3ed79e09 none            swap    sw              0       0 # UUID=e3724924-14ed-4787-bc84-4d0e6fd7a52f none            swap    sw              0       0 ------------------------------- (3)再起動するか、swapon コマンドで swap を追加してください。 $ swapon -a