On a MicroSD to be replaced by an upgrade/new MicroSD, you plug it into the chip drive, without mounting the filesystem (you can but it isn't necessary), then run "blkid" to find the UUID of the old MicroSD.
On Linux if you connect a MicroUSB, you can run a "mkdosfs" (make DOS filesystem) to format the filesystem with the same UUID of the previous MicroSD.
mkdosfs -i 12345678 /dev/sdh1
**** no dash in the UUID above
or
tune2fs /dev/sdX1 -U 1234-5678
Subscribe to:
Post Comments (Atom)
Script to see network interface connection speed
cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1 network-speed ...
-
This script with it's two related configuration files worked on Raspberry Pi Raspbian Linux. What was always sketchy was the "dri...
-
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #Warn ; Recommended for catching common errors. Send...
-
cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1 network-speed ...
No comments:
Post a Comment