web-dev-qa-db-ja.com

SSOなしのRPi 3用のUbuntu Core 16のセットアップ

UbuntuをRPiで実行して、あらゆる種類のスナップ開発や使用を行わず、通常のサーバーを実行する必要があります。

SSOのセットアップを通過して、従来のaptに戻る方法はありますか?たぶん、SDにフラッシュする前に画像を編集することによって?

通常のUbuntu Serverには、RPi 2の公式(バグなし)イメージしかありません。さまざまな理由から、Raspbianには非常に不満を感じています。

1
Oxwivi

Ubuntu Wikiの公式の Raspberry Pi ページの手順を使用して、Ubuntu Server 16.04のRPi 2イメージを3で起動するように変更しました。指示は特定のコマンドを使用しない一般的な指示であり、次に使用するコマンドのコンパイルを示します。

$ Sudo losetup -P /dev/loop0 ubuntu-16.04.4-preinstalled-server-armhf+raspi2.img
$ Sudo mount /dev/loop0p2 /mnt/
$ Sudo mount /dev/loop0p1 /mnt/boot/

## .img is mounted on /mnt/

$ sudoedit /mnt/boot/config.txt
## find and edit the following lines
...
kernel=uboot.bin
device_tree_address=0x02000000
...
## change to the following; note the changed kernel and commented device_tree_address
...
kernel=vmlinuz
initramfs initrd.img followkernel
#device_tree_address=0x02000000
...
$ Sudo cp -r /mnt/lib/firmware/4.4.0-1085-raspi2/device-tree/{bcm2710-rpi-3-b.dtb,overlays/} /mnt/boot/

## all changes are done, now to unbind the .img

$ Sudo umount /mnt/boot && Sudo umount /mnt
$ Sudo losetup -D

## flash the SD card

dd if=/path/to/.img of=/dev/path/to/sd-card conv=fsync status=progress
1
Oxwivi

いいえ。UbuntuCoreイメージをSSOなしで使用したり、aptを使用してそれらを管理したりすることはできません。 Raspberry Pi 3用のUbuntu ServerイメージARMビルドをインストールする必要があります。

利用可能なarm64 ISOがありますが、Raspberry Pi 3のプリインストールイメージはありません。

1
dobey