1
Distribuce / Bezpečný upgrade Debianu 8/Jessie
« kdy: 10. 07. 2022, 21:50:11 »
Našel jsem doma starší miniPC, které jsem kdysi používal a chtěl bych ho zkusit postupně upgradovat. Půjde to?
Tato sekce Vám umožňuje zobrazit všechny příspěvky tohoto uživatele. Prosím uvědomte si, že můžete vidět příspěvky pouze z oblastí Vám přístupných.
root@HomeAssistant:~# ls /boot/efi/EFI/debian
BOOTX64.CSV fbx64.efi grub.cfg grubx64.efi mmx64.efi shimx64.efi
root@HomeAssistant:/media/plazivec/66dc6798-4d29-4c1b-8907-3d55ce0ac2a8# ls /media/plazivec/66dc6798-4d29-4c1b-8907-3d55ce0ac2a8/boot/efi/EFI
ls: nelze přistoupit k '/media/plazivec/66dc6798-4d29-4c1b-8907-3d55ce0ac2a8/boot/efi/EFI': Adresář nebo soubor neexistuje
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "$(id -u)" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH
if [ "${PS1-}" ]; then
if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "$(id -u)" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi