0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

hpe Microserver Gen8のMicroSDカードにFreeBSDをインストール

Posted at

hp Microserver(初代)にFreeBSDを入れて使っていたNASを、hpe Microserver Gen8で更新。
FreeBSDのバージョンは12.1、インストーラはmemstic.imgを選択。
##ディスクの認識
インストール時には、インストーラの入っているUSBメモリがda0、MicroSDカードがda1となり、da1にインストールされ、fstabには、

/etc/fstab
# Device	Mountpoint	FStype	Options	Dump	Pass#
/dev/da1p2	/		ufs	rw	1	1
/dev/da1p3	none		swap	sw	0	0

と書き込まれる。
インストール後にUSBメモリを抜いて再起動すると、MicroSDがda0となるので起動中にカーネルを見失ない、

mountroot> ufs:/dev/da0p2

としてルートディレクトリの位置を指示しないと起動できなくなる。
起動後に/etc/fstabを編集して、

/etc/fstab
# Device	Mountpoint	FStype	Options	Dump	Pass#
/dev/da0p2	/		ufs	rw	1	1
/dev/da0p3	none		swap	sw	0	0

として再起動するとブートに成功するようになる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?