Dell 11G R610 firmware update

R610 PERC 6/i のファームウェアを更新する。

https://www.dell.com/support/home/ja-jp/product-support/product/poweredge-r610/drivers

https://www.dell.com/support/home/ja-jp/drivers/driversdetails?driverid=f96nr

この方法

Manually Updating the Firmwares on a Dell PowerEdge R610 | RobWillis.info 2018

  • USBドライブを2つ用意
  • Support Live ISO Image (SLI_3.0.0_A00.iso) のブータブルUSBをRufusで作成する
  • もう1つのUSBにファームウェア (SAS-RAID_Firmware_F96NR_LN_6.3.3-0002_X00.BIN) をコピー
  • SLI USBで起動
  • BIN 実行時の Inventory collection failed 回避のため libstorelibir.so.5 を libstorelibir-3.so のシンボリックにする
  • SAS-RAID_Firmware_F96NR_LN_6.3.3-0002_X00.BIN 実行

Root cause of problem is subroutine "sasdupie" from "SAS-RAID_Firmware_3P52K_LN_6.3.3-0002_X00.BIN" that fail while trying to use "libstorelibir.so.5"(or newer) located in /opt/dell/srvadmin/lib64, where for normal operation "sasdupie" expect to have "libstorelibir.so.3"(older than 5).

We may fix the problem next way:

cd /opt/dell/srvadmin/lib64
mv libstorelibir.so.5 libstorelibir.so.5.old
ln -s libstorelibir-3.so libstorelibir.so.5

(We presume that in path "/opt/dell/srvadmin/lib64" we have also "libstorelibir.so.3")

https://www.dell.com/community/PowerEdge-HDD-SCSI-RAID/Dell-PERC-6-i-Integrated-Firmware-Update-fails-with-inventory/td-p/4605951

chmod

FAT で BINファイルに実行権限つけられない場合は /tmp にコピーしてから chmod する

FAT32 formatted drives do not support file permissions. The permissions for everything are determined by how the drive is mounted.

How do I change file permissions on a FAT32 drive? - Ask Ubuntu

chmod etc does not work on NTFS / FAT formatted drives. Only works on Linux EXTx formatted drives.
Look into setting permissions in FSTAB or format the drive EXT4.

chmod not working on USB drive on Raspberry PI - Raspberry Pi Forums