Skip to content

Commit

Permalink
dd ist jetzt sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
dewomser committed Sep 26, 2022
1 parent 7f39d64 commit 10bcc31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion raspi-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,15 @@ read -r endgueltigja
if [ "$endgueltigja" == "y" ]; then

# Wenn die Karte nur als root gemountet werden kann, muss dd durch sudo dd ersetzt werden. umount -> sudo umount
## sudo ddd – is now on
# Alternative für Ubuntu:
# echo 'KERNEL=="sd*", SUBSYSTEMS=="usb", MODE="0666"' | sudo tee /etc/udev/rules.d/99-usb-storage.rules
# Quelle : https://askubuntu.com/questions/828545/using-dd-without-sudo

# Wenn die nächsten 3 Zeilen aktiviert sind: "don't blame me!"
#umount /dev/"${laufwerke2[0]}"[0-9] > /dev/null 2>&1
xz --keep --decompress raspi"$attribut".xz
dd if=raspi"$attribut" of=/dev/"${laufwerke2[0]}" bs=4M conv=fsync status=progress || echo "Es gibt Probleme mit Schreibrechten.Ab Zeile 105 gibts Hilfe"
sudo dd if=raspi"$attribut" of=/dev/"${laufwerke2[0]}" bs=4M conv=fsync status=progress || echo "Es gibt Probleme mit Schreibrechten.Ab Zeile 105 gibts Hilfe"
echo "Tatatatah ! fertig"
#umount /dev/"${laufwerke2[0]}"[0-9] > /dev/null 2>&1
else
Expand Down

0 comments on commit 10bcc31

Please sign in to comment.