投稿

11月, 2024の投稿を表示しています

Rock5B(8)本格的に環境構築

 Rock5Bに本格的に環境構築、取りあえず、SDと電源の相性が厳しい。 前回書いたように、結果として Ankerの65WとSundiskのA1のSD で起動。 M.2SSDにarmbianのイメージを書き込んでおいて、SDからarmbianを起動し ここ にあるように sudo armbian-install を実行、  Install/Update the bootloader on MTD Flash をして、シャットダウン、SDを抜いてM.2から起動。 ちなみに起動用のユーザー名は root 1234 初回ログイン時に変更を求められる。 ---------------------- 1. aptをprox経由に変更 2.webminのインストール webminのubutuへの新しいインストール方法 /usr/share/keyrings/jcameron-key.gpgが作れないので sudo touch /usr/share/keyrings/jcameron-key.gpgでファイル作って 777にしてから644にもどす ubuntu 18.04 webmin Webminstats 3.固定IPの設定 標準が分からんがwebminで設定できるが、どこに設定されているか不明。 コマンドとしては以下でGUI間隔で設定できる。 sudo nmtui 最近のlinuxのIPアドレスの設定は面倒くさい  4.NTPの設定 apt install ntp /etc/ntp.confを編集 pool 0.jp.pool.ntp.org pool 1.jp.pool.ntp.org pool 2.jp.pool.ntp.org pool 3.jp.pool.ntp.org poolをコメントアウト restrict 192.168.3.0 mask 255.255.255.0 nomodify notrap  #アクセスを許可するIP 5.muninのインストール https://ysa256.blogspot.com/2022/05/munin_26.html

FreshRSSのインストール2(自動更新)

フィードの自動更新の方法は以下に書かれている。 https://freshrss.github.io/FreshRSS/en/admins/08_FeedUpdates.html コピペすると /etc/crontabを編集して以下を編集して追加せよ。 意味は毎時10分にwww-dataが php以下のファイルを実行せよ。ログは/tmp/FreshRSS.logに書き出せ。です。 10 * * * * www-data php -f /usr/share/FreshRSS/app/actualize_script.php > /tmp/FreshRSS.log 2>&1 /usr/share/FreshRSS/app/actualize_script.phpは環境によって異なり。実際にインストールしたフォルダーに変更です。例えば/ver/html/www/FreshRSS/app/actualize_script.phpとかです。 これで、実行されます。実際にはwebminのcronで登録した。

Rock5B(7)SDの好みが強い2?

 Rock5BはSDからの起動が気難しい。 armbianの起動が成功しているのは sundiskのAのSD Ankerの65W(45Wはダメ、エレコムもダメ) ちゃんとしたUSB-Cケーブル 6.1系は起動するけど6.10系は起動しないねね。

Rock5B(6)SDの好みが強い?

 Rock5B(6)SDの好みが強いですね。 前回「 Rock5B(2)SDがだめでした 」でKIOXIAの16GB UHS-1のならRadxaのubuntuイメージ起動できたと報告したが、今度はこのSDでもarmbianが起動できない。 で、苦しんだが結果としてsundiskのultraの16GBに書き込んだら起動できた。 radxaのページの要件としては  https://wiki.radxa.com/Rock5/install/microSD Step one: Requirements ROCK 5B board with power supply a microSD card, larger than 8GB, class 10 or better a microSD card reader, either a USB card reader or the SD card reader on laptop a PC/laptop running Windows or Linux or MacOS なのでclass10でならOKかと思っていたらダメだった。 でarmbianのページ見ると(見ていたのに無視していた) https://docs.armbian.com/User-Guide_Getting-Started/#how-to-prepare-a-sd-card Preparing SD card? Important note: Make sure you use a good, reliable and fast SD card. If you encounter boot or stability troubles in over 95 percent of the time it is either insufficient power supply or related to SD card (bad card, bad card reader, something went wrong when burning the image, card too slow to boot – ‘Class 10’ highly recommended!). Armbian can simply not run on unreliable ha...

Rock5B(5)SSD,SDから起動できなくってlinuxから修復

armbianのインストールでうまくいかなくって、その過程でSPIフラッシュを消して、そのままにした結果、何も起動できなくなった。 修復は  https://iothonpo.com/rock5b-maskrom-reset/  を参考にした。こちらの記事windowsがメインなのでlinuxでのやり方は  https://wiki.radxa.com/Rock5/install/rockchip-flash-tools  の記事の Option two: rkdeveloptool on Linux (X86 or ARM)の部分。 sudo apt-get install libudev-dev libusb-1.0-0-dev dh-autoreconf 環境によっては git やc++のコンパイル環境が無いので適時追加  sudo apt-get install git g++   git clone https://github.com/radxa/rkdeveloptool.git  cd rkdeveloptool  autoreconf -i  ./configure  make  公式でここでエラーが出たら、必要な物をaptでインストールせよとある。 sudo cp rkdeveloptool /usr/local/bin/  sudo ldconfig  で、コンパイルとインストールが完了.コマンドを入力してバージョン確認。  rkdeveloptool -v   rkdeveloptool ver 1.32 WindowsのようなGUIではなくコマンドのみ。使い方は  https://wiki.radxa.com/Rock5/install/spi  ここの 4) Write u-boot images to SPI NOR flash or erase SPI NOR flash Option 1: Flash with Linux PC/Mac マスクROMモードでlinuxに接続。 sudo rkdeveloptool ld DevNo=1 Vid=0x2207,Pid=0x350b,LocationID=106 ...