Update and boot Ubuntu daily-live ISO from GRUB2
terça-feira, 27 de agosto de 2013
Tuxmind
Ubuntu 13.10 is almost here. Want to try it?
Script to update (sync) Ubuntu-daily-live.iso and boot ISO file from GRUB2
Need sudo permissions only when run for the first time (install dependencies and add custom menu entry on grub).
Here is the script to update Ubuntu daily-live ISO and boot from GRUB2.
Reverting changes made by Ubuntu_daily-live_Grub.sh script:
New version 2022-04-17 link below
https://tuxmind.blogspot.com/2022/04/update-and-boot-ubuntu-daily-live-iso.htmlScript to update (sync) Ubuntu-daily-live.iso and boot ISO file from GRUB2
Need sudo permissions only when run for the first time (install dependencies and add custom menu entry on grub).
Here is the script to update Ubuntu daily-live ISO and boot from GRUB2.
#!/bin/bash
#Script to update and boot Ubuntu daily-live ISO with GRUB2
#Autor João Sousa tuxmind.blogspot.com
#Version 0.1
### Find /home partition "number"
N_PARTICAO=`df /home | tail -1 | cut -c9`
### Install curl and zsync (Add repo "universe")
which curl || sudo apt-get install -y curl
#"sudo software-properties-gtk -e universe" deprecated?
which zsync || (sudo apt-get update; sudo add-apt-repository universe; sudo apt-get update; sudo apt-get install -y zsync)
### Find last "daily-live" codename (future URL changes will break this :( send me your feedback if you know a better way to do this :P )
codename=`curl -s http://cdimage.ubuntu.com/daily-live/current/MD5SUMS | head -1 | cut -d* -f2 | cut -d- -f1`
cd
### zsync download/update ISO file
zsync http://cdimage.ubuntu.com/daily-live/current/$codename-desktop-i386.iso.zsync && echo "Image $codename-desktop-i386.iso is update"
### Remove simbolic link (only if exist)
rm -f Ubuntu-desktop-i386.iso
### Simbolic link to Ubuntu-desktop-i386.iso
ln -s $codename-desktop-i386.iso Ubuntu-desktop-i386.iso
### Separate home partition?
RAIZ=`echo "/$USER"`
### Or... same partition?
[ `df / | tail -1 | cut -d" " -f1` == `df /home | tail -1 | cut -d" " -f1` ] && RAIZ=`echo "/home/$USER"`
### Created "42_ubuntu-daily-live" (if doesn't exist)
if [ -e /etc/grub.d/42_ubuntu-daily-live ];
then
echo "42_ubuntu-daily-live ok"
else
### Add new boot option to Grub2
cat > 42_ubuntu-daily-live << EOF
#!/bin/sh
exec tail -n +3 \$0
menuentry "Ubuntu $codename daily-live" {
set isofile="$RAIZ/Ubuntu-desktop-i386.iso"
loopback loop (hd0,$N_PARTICAO)\$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=\$isofile noprompt quiet splash --
initrd (loop)/casper/initrd.lz
}
EOF
### Move file "42_ubuntu-daily-live" to /etc/grub.d
sudo mv 42_ubuntu-daily-live /etc/grub.d/42_ubuntu-daily-live
### Change permissions
sudo chmod +x /etc/grub.d/42_ubuntu-daily-live
### Update Grub menu list
sudo update-grub
fi
#Script to update and boot Ubuntu daily-live ISO with GRUB2
#Autor João Sousa tuxmind.blogspot.com
#Version 0.1
### Find /home partition "number"
N_PARTICAO=`df /home | tail -1 | cut -c9`
### Install curl and zsync (Add repo "universe")
which curl || sudo apt-get install -y curl
#"sudo software-properties-gtk -e universe" deprecated?
which zsync || (sudo apt-get update; sudo add-apt-repository universe; sudo apt-get update; sudo apt-get install -y zsync)
### Find last "daily-live" codename (future URL changes will break this :( send me your feedback if you know a better way to do this :P )
codename=`curl -s http://cdimage.ubuntu.com/daily-live/current/MD5SUMS | head -1 | cut -d* -f2 | cut -d- -f1`
cd
### zsync download/update ISO file
zsync http://cdimage.ubuntu.com/daily-live/current/$codename-desktop-i386.iso.zsync && echo "Image $codename-desktop-i386.iso is update"
### Remove simbolic link (only if exist)
rm -f Ubuntu-desktop-i386.iso
### Simbolic link to Ubuntu-desktop-i386.iso
ln -s $codename-desktop-i386.iso Ubuntu-desktop-i386.iso
### Separate home partition?
RAIZ=`echo "/$USER"`
### Or... same partition?
[ `df / | tail -1 | cut -d" " -f1` == `df /home | tail -1 | cut -d" " -f1` ] && RAIZ=`echo "/home/$USER"`
### Created "42_ubuntu-daily-live" (if doesn't exist)
if [ -e /etc/grub.d/42_ubuntu-daily-live ];
then
echo "42_ubuntu-daily-live ok"
else
### Add new boot option to Grub2
cat > 42_ubuntu-daily-live << EOF
#!/bin/sh
exec tail -n +3 \$0
menuentry "Ubuntu $codename daily-live" {
set isofile="$RAIZ/Ubuntu-desktop-i386.iso"
loopback loop (hd0,$N_PARTICAO)\$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=\$isofile noprompt quiet splash --
initrd (loop)/casper/initrd.lz
}
EOF
### Move file "42_ubuntu-daily-live" to /etc/grub.d
sudo mv 42_ubuntu-daily-live /etc/grub.d/42_ubuntu-daily-live
### Change permissions
sudo chmod +x /etc/grub.d/42_ubuntu-daily-live
### Update Grub menu list
sudo update-grub
fi
Reverting changes made by Ubuntu_daily-live_Grub.sh script:
cd /etc/grub.d/
sudo rm -f 42_ubuntu-daily-live
sudo update-grub
Tags:
Nenhum comentário:
Postar um comentário