エントリー

カテゴリー「PC」の検索結果は以下のとおりです。

ページ移動

Ubuntu Serverが起動しなくなる

ubuntu serverが昨日まで動いていたのに起動しなくなった

BIOSすら起動しないのでCPUが動作してないと思われる

参ったな・・・最近どれもこれも古いからか故障する

・・・

次の日マザー(K8M800-754)を取り出して見てみるとCPU周辺のコンデンサが怪しい

Albatron K8M800-754

5個ともに既に限界(寿命)を超えているように思える(つ~か、かなり酷い状態)

不良コンデンサ

コンデンサの仕様を見ると3300μF 4Vのようだ(入手が難しそうだな)

3300μF

こんなになるまでほっといたから交換しても動作しないかもしれないなぁ

noatime設定の確認

先日512MB CFにDebianをインストールした際、フラッシュメモリなので書き込みを少しでも減らそうとルートファイルシステム(/)にnoatimeの設定を施した

その設定がルートファイルシステムに対しても正常に動作するのか気になっていたので確認してみた

インストールした512MB CF(noatime 有)

/dev/sda1 on / type ext3 (rw,noatime,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)

都合良く前に作成した別のCFはnoatimeを設定してない(noatime 無)ので、このシステムを使ってテストしてみる

/dev/sda2 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
/dev/sda1 on /boot type ext3 (rw)

ファイル生成後、時刻が変わったらアクセスしてatimeを確認する

# date
Fri Apr 19 16:57:05 JST 2013
# cp .profile xxx
# ls -l
total 4
-rw-r--r-- 1 root root 140 Apr 19 16:57 xxx
# ls -lu
total 4
-rw-r--r-- 1 root root 140 Apr 19 16:57 xxx
# ls -lc
total 4
-rw-r--r-- 1 root root 140 Apr 19 16:57 xxx
# date
Fri Apr 19 16:58:06 JST 2013
# cat xxx
# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

mesg n
# ls -l
total 4
-rw-r--r-- 1 root root 140 Apr 19 16:57 xxx
# ls -lu
total 4
-rw-r--r-- 1 root root 140 Apr 19 16:58 xxx
# ls -lc
total 4
-rw-r--r-- 1 root root 140 Apr 19 16:57 xxx
#

この後アクセスしてもatimeは変更されない(キャッシュのせいか?syncしても同様だった)

一応ファイル生成後の1度目のアクセスでatimeの変更があるようなのでfstabを修正してnoatimeを設定する

(修正前)

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
# / was on /dev/sda2 during installation
UUID=7ba2fa05-9514-443e-9ea0-8104a559fe60 /               ext3    errors=remount-ro 0       1
# /boot was on /dev/sda1 during installation
UUID=eea57bac-545b-4bc0-adc6-36a09a2a0b71 /boot           ext3    defaults        0       2
/dev/scd0       /media/cdrom0   udf,iso9660 user,noauto     0       0
/dev/scd0       /media/floppy0  auto    rw,user,noauto  0       0

(修正後)

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
# / was on /dev/sda2 during installation
UUID=7ba2fa05-9514-443e-9ea0-8104a559fe60 /               ext3    defaults,noatime,errors=remount-ro 0       1
# /boot was on /dev/sda1 during installation
UUID=eea57bac-545b-4bc0-adc6-36a09a2a0b71 /boot           ext3    defaults,noatime        0       2
/dev/scd0       /media/cdrom0   udf,iso9660 user,noauto     0       0
/dev/scd0       /media/floppy0  auto    rw,user,noauto  0       0

(reboot)

# mount
/dev/sda2 on / type ext3 (rw,noatime,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
/dev/sda1 on /boot type ext3 (rw,noatime)
# date
Fri Apr 19 17:16:14 JST 2013
# cp .profile xxx
# ls -l
total 4
-rw-r--r-- 1 root root 140 Apr 19 17:16 xxx
# ls -lu
total 4
-rw-r--r-- 1 root root 140 Apr 19 17:16 xxx
# ls -lc
total 4
-rw-r--r-- 1 root root 140 Apr 19 17:16 xxx
# date
Fri Apr 19 17:17:09 JST 2013
# cat xxx
# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

mesg n
# ls -l
total 4
-rw-r--r-- 1 root root 140 Apr 19 17:16 xxx
# ls -lu
total 4
-rw-r--r-- 1 root root 140 Apr 19 17:16 xxx
# ls -lc
total 4
-rw-r--r-- 1 root root 140 Apr 19 17:16 xxx
#

効果の程は判らないが正常に動作しているようである

今後は利用しよう

iBookG4にlubuntuをインストール

iBookG4にインストールしているubuntu10.04のサポート期限がきたので、「軽量で、リソース消費量が少なく、省エネ」なことを目指しているというLubuntu(ルブントゥ)を試してみることにした

LubuntuはUbuntuから派生したディストリビューションなのでパッケージ管理も同じだし移行もし易いだろう

なにしろ持っているiBookG4は一番下のスペックでpowerPCの800MHzのなので軽量というのが魅力である

尚、前にubuntuをアップグレードしようとしたが途中でエラーが発生して完了しなかったのでしかたなくそのままにしておいた

ダウンロード

以下から最新のLubuntuをダウンロードした

PowerPC向けのダウンロードページ(https://wiki.ubuntu.com/PowerPCDownloads/)

12.10 Quantal Quetzal
Lubuntu
Desktop live install CD, alternate install CD
http://cdimage.ubuntu.com/lubuntu/releases/quantal/release/

(以下のページとなる)

Lubuntu 12.10 (Quantal Quetzal)
・・・
Mac (PowerPC) and IBM-PPC (POWER5) desktop image

lubuntu-12.10-desktop-powerpc.isoをダウンロードしてCD-Rに焼く

インストール

iBookG4にLANを接続してインストールディスクを電源投入時に挿入し「C」Keyを押しっぱなしにする

CD-Rから起動してしばらく進んだところでエラーで終わり

起動しない・・・メッセージからはアドレスエラーのようにみえる

前にubuntu10.10で同様な現象が発生したような気がするなと思いながら、ここで時間も掛けたくないので1つ前の12.04をダウンロードしてインストール

12.04 Precise Pangolin
Lubuntu
Desktop live install CD, alternate install CD
http://cdimage.ubuntu.com/lubuntu/releases/precise/release/
Lubuntu 12.04 (Precise Pangolin)
・・・
Mac (PowerPC) and IBM-PPC (POWER5) desktop CD

lubuntu-12.04-desktop-powerpc.isoをダウンロードしてCD-Rに焼く

今度は問題なくライブCDとして起動した

続いてインストールを開始

ディスクの初期化も必要かなと思っていたらubuntuからアップグレードの選択がでてきたのでアップグレードを選択して完了

試用

デスクトップ環境のLXDEは初めて使うことになるが(多数のX環境で仕事してたので)特に判らなくて操作できないということはない

少し操作してみて印象は「確かに軽い」iBookG4が生まれ変わるかもしれないという期待が持てた

まずは無線LANを導入

$ sudo apt-get update
・・・
$ apt-cache search b43
b43-fwcutter - Utility for extracting Broadcom 43xx firmware
firmware-b43-installer - Installer package for firmware for the b43 driver
firmware-b43-lpphy-installer - Installer package for firmware for the b43 driver (LP-PHY version)
firmware-b43legacy-installer - Installer package for firmware for the b43legacy driver

$ sudo apt-get install firmware-b43legacy-installer

パッケージリストを読み込んでいます... 完了
依存関係ツリーを作成しています               
状態情報を読み取っています... 完了
以下のパッケージが新たにインストールされます:
  firmware-b43legacy-installer
アップグレード: 0 個、新規インストール: 1 個、削除: 0 個、保留: 0 個。
3,000 B のアーカイブを取得する必要があります。
この操作後に追加で 33.8 kB のディスク容量が消費されます。
取得:1 http://ports.ubuntu.com/ubuntu-ports/ precise/multiverse firmware-b43legacy-installer all 1:015-9 [3,000 B]
3,000 B を 0秒 で取得しました (4,588 B/s)        
以前に未選択のパッケージ firmware-b43legacy-installer を選択しています。
(データベースを読み込んでいます ... 現在 101486 個のファイルとディレクトリがインストールされています。)
(.../firmware-b43legacy-installer_1%3a015-9_all.deb から) firmware-b43legacy-installer を展開しています...
firmware-b43legacy-installer (1:015-9) を設定しています ...
No chroot environment found. Starting normal installation
--2013-04-17 20:55:54--  http://downloads.openwrt.org/sources/wl_apsta-3.130.20.0.o
downloads.openwrt.org (downloads.openwrt.org) をDNSに問いあわせています... 78.24.191.177
downloads.openwrt.org (downloads.openwrt.org)|78.24.191.177|:80 に接続しています... 接続しました。
HTTP による接続要求を送信しました、応答を待っています... 200 OK
長さ: 652866 (638K) [application/octet-stream]
`wl_apsta-3.130.20.0.o' に保存中

100%[======================================>] 652,866      261K/s   時間 2.4s 

2013-04-17 20:55:58 (261 KB/s) - `wl_apsta-3.130.20.0.o' へ保存完了 [652866/652866]

This file is recognised as:
  filename   :  wl_apsta.o
  version    :  295.14
  MD5        :  e08665c5c5b66beb9c3b2dd54aa80cb3
Extracting b43legacy/ucode2.fw
  ucode version:  295
  ucode revision: 14
  ucode date:     2005-04-18
  ucode time:     02:36:27
Extracting b43legacy/ucode4.fw
  ucode version:  295
  ucode revision: 14
  ucode date:     2005-04-18
  ucode time:     02:36:27
Extracting b43legacy/ucode5.fw
  ucode version:  295
  ucode revision: 14
  ucode date:     2005-04-18
  ucode time:     02:36:27
Extracting b43legacy/ucode11.fw
  ucode version:  295
  ucode revision: 14
  ucode date:     2005-04-18
  ucode time:     02:36:27
Extracting b43legacy/pcm4.fw
Extracting b43legacy/pcm5.fw
Extracting b43legacy/a0g0bsinitvals2.fw
Extracting b43legacy/b0g0bsinitvals5.fw
Extracting b43legacy/a0g0initvals5.fw
Extracting b43legacy/a0g1bsinitvals5.fw
Extracting b43legacy/a0g0initvals2.fw
Extracting b43legacy/a0g1initvals5.fw
Extracting b43legacy/b0g0bsinitvals2.fw
Extracting b43legacy/b0g0initvals5.fw
Extracting b43legacy/b0g0initvals2.fw
Extracting b43legacy/a0g0bsinitvals5.fw
$

接続パスワードを設定して完了

ubuntu導入で整えた環境設定を見直しながらしばらく試用してみることにする

Ubuntu Serverにlm-sensorsを導入

いまさらながらubuntus serverにlm-sensorsを導入

OS
  • Ubuntu Server 12.04 LTS AMD64
ハードウェア
  • MB: Albatron K8M800-754 (VIA K8M800, VIA VT8237R, RealTek RTL8100C)
  • CPU: AMD Turion 64 MT-30 (CLK:1.6GHz, L2:1MB, TDP:25W)
  • MEM: DDR 266 PC2100 512MB*2
セットアップ
$ sudo aptitude install lm-sensors
以下の新規パッケージがインストールされます:
  libsensors4{a} lm-sensors
0 個のパッケージを更新、 2 個を新たにインストール、 0 個を削除予定、104 個が更新されていない。
133 k バイトのアーカイブを取得する必要があります。 展開後に 554 k バイトのディスク領域が新たに消費されます。
先に進みますか? [Y/n/?] y
取得: 1 http://jp.archive.ubuntu.com/ubuntu/ precise/main libsensors4 amd64 1:3.3.1-2ubuntu1 [31.9 kB]
取得: 2 http://jp.archive.ubuntu.com/ubuntu/ precise/universe lm-sensors amd64 1:3.3.1-2ubuntu1 [101 kB]
Fetched 133 kB in 0秒 (363 kB/s)
Selecting previously unselected package libsensors4.
(データベースを読み込んでいます ... 現在 54989 個のファイルとディレクトリがイン ストールされています。)
(.../libsensors4_1%3a3.3.1-2ubuntu1_amd64.deb から) libsensors4 を展開しています...
Selecting previously unselected package lm-sensors.
(.../lm-sensors_1%3a3.3.1-2ubuntu1_amd64.deb から) lm-sensors を展開しています...
man-db のトリガを処理しています ...
ureadahead のトリガを処理しています ...
ureadahead will be reprofiled on next reboot
libsensors4 (1:3.3.1-2ubuntu1) を設定しています ...
lm-sensors (1:3.3.1-2ubuntu1) を設定しています ...
libc-bin のトリガを処理しています ...
ldconfig deferred processing now taking place

libsensors3が無かったのでどうしようかと思ったが、libsensors4が関連としてインストールされた

$ sensors
acpitz-virtual-0
Adapter: Virtual device
temp1:         +9.0°C  (crit = +65.0°C)

k8temp-pci-00c3
Adapter: PCI adapter
Core0 Temp:   +30.0°C
$ cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.

loop
lp
rtc
コンフィグ

自動では定義の設定がされないようなので

$ sudo sensors-detect
# sensors-detect revision 5984 (2011-07-10 21:22:53 +0200)

This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.

Some south bridges, CPUs or memory controllers contain embedded sensors.
Do you want to scan for them? This is totally safe. (YES/no): y
Module cpuid loaded successfully.
Silicon Integrated Systems SIS5595...                       No
VIA VT82C686 Integrated Sensors...                          No
VIA VT8231 Integrated Sensors...                            No
AMD K8 thermal sensors...                                   Success!
    (driver `k8temp')
AMD Family 10h thermal sensors...                           No
AMD Family 11h thermal sensors...                           No
AMD Family 12h and 14h thermal sensors...                   No
AMD Family 15h thermal sensors...                           No
AMD Family 15h power sensors...                             No
Intel digital thermal sensor...                             No
Intel AMB FB-DIMM thermal sensor...                         No
VIA C7 thermal sensor...                                    No
VIA Nano thermal sensor...                                  No

Some Super I/O chips contain embedded sensors. We have to write to
standard I/O ports to probe them. This is usually safe.
Do you want to scan for Super I/O sensors? (YES/no): y
Probing for Super-I/O at 0x2e/0x2f
Trying family `National Semiconductor/ITE'...               No
Trying family `SMSC'...                                     No
Trying family `VIA/Winbond/Nuvoton/Fintek'...               No
Trying family `ITE'...                                      No
Probing for Super-I/O at 0x4e/0x4f
Trying family `National Semiconductor/ITE'...               No
Trying family `SMSC'...                                     No
Trying family `VIA/Winbond/Nuvoton/Fintek'...               Yes
Found `Fintek F71805F/FG Super IO Sensors'                  Success!
    (address 0x295, driver `f71805f')

Some systems (mainly servers) implement IPMI, a set of common interfaces
through which system health data may be retrieved, amongst other things.
We first try to get the information from SMBIOS. If we don't find it
there, we have to read from arbitrary I/O ports to probe for such
interfaces. This is normally safe. Do you want to scan for IPMI
interfaces? (YES/no): y
Probing for `IPMI BMC KCS' at 0xca0...                      No
Probing for `IPMI BMC SMIC' at 0xca8...                     No

Some hardware monitoring chips are accessible through the ISA I/O ports.
We have to write to arbitrary I/O ports to probe them. This is usually
safe though. Yes, you do have ISA I/O ports even if you do not have any
ISA slots! Do you want to scan the ISA I/O ports? (yes/NO): y
Probing for `National Semiconductor LM78' at 0x290...       No
Probing for `National Semiconductor LM79' at 0x290...       No
Probing for `Winbond W83781D' at 0x290...                   No
Probing for `Winbond W83782D' at 0x290...                   No

Lastly, we can probe the I2C/SMBus adapters for connected hardware
monitoring devices. This is the most risky part, and while it works
reasonably well on most systems, it has been reported to cause trouble
on some systems.
Do you want to probe the I2C/SMBus adapters now? (YES/no): y
Using driver `i2c-viapro' for device 0000:00:11.0: VIA Technologies VT8237 South Bridge
Module i2c-dev loaded successfully.

Next adapter: SMBus Via Pro adapter at 5000 (i2c-0)
Do you want to scan it? (yes/NO/selectively): y
Client found at address 0x50
Probing for `Analog Devices ADM1033'...                     No
Probing for `Analog Devices ADM1034'...                     No
Probing for `SPD EEPROM'...                                 Yes
    (confidence 8, not a hardware monitoring chip)
Probing for `EDID EEPROM'...                                No
Client found at address 0x51
Probing for `Analog Devices ADM1033'...                     No
Probing for `Analog Devices ADM1034'...                     No
Probing for `SPD EEPROM'...                                 Yes
    (confidence 8, not a hardware monitoring chip)

Now follows a summary of the probes I have just done.
Just press ENTER to continue:

Driver `f71805f':
  * ISA bus, address 0x295
    Chip `Fintek F71805F/FG Super IO Sensors' (confidence: 9)

Driver `k8temp' (autoloaded):
  * Chip `AMD K8 thermal sensors' (confidence: 9)

To load everything that is needed, add this to /etc/modules:
#----cut here----
# Chip drivers
f71805f
#----cut here----
If you have some drivers built into your kernel, the list above will
contain too many modules. Skip the appropriate ones!

Do you want to add these lines automatically to /etc/modules? (yes/NO)y
Successful!

Monitoring programs won't work until the needed modules are
loaded. You may want to run 'service module-init-tools start'
to load them.

Unloading i2c-dev... OK
Unloading cpuid... OK

$

(再起動)

$ sensors
acpitz-virtual-0
Adapter: Virtual device
temp1:         +9.0°C  (crit = +65.0°C)

k8temp-pci-00c3
Adapter: PCI adapter
Core0 Temp:   +34.0°C

とりあえずこれで良いか

ページ移動

ユーティリティ

検索

エントリー検索フォーム
キーワード

新着コメント

Re:ATS-25を作製する
2025/03/23 from kazu
Re:ATS-25を作製する
2025/03/22 from admin
Re:ATS-25を作製する
2025/03/22 from kazu
Re:NOAA受信システム復旧
2025/03/20 from admin
Re:NOAA受信システム復旧
2025/03/16 from とおりすがり

過去ログ

Feed