Cansado de gravar memórias usb e DVDs para testar distribuições Linux?
O Ventoy é um recurso para instalar na mídia. Depois é só salvar o arquivo .iso da distribuição que desejas testar no teu computador.
O legal é que podes colocar quantos arquivos .iso couberem na tua mídia (ou seja, diversas distros Linux). Ao dar boot pela mídia, o Ventoy organizará um menu com as opções de distros a testar ou instalar.
Passo a passo para instalar Ventoy no Linux:
https://linoxide.com/how-to-install-ventoy-on-ubuntu/
Uso xcalibrator para a lousa digital sensível ao toque no laboratório da escola.
Como instalar xcalibrator no Ubuntu:
https://www.thefanclub.co.za/how-to/how-ubuntu-1204-touchscreen-calibration
Outro assunto.
Para remover kernel antigo no Linux:
Open up a terminal (Ctrl+Alt+T). Abra o terminal (Ctrl+Alt=T)
Type
uname -r
. This will show you the kernel you're using currently, so you don't want to remove this. Escrevauname -r
. Isto te mostrará o kernel em uso, que você não deve remover.Run the following command:
dpkg --list | grep linux-image
. This will show the all the kernels that are installed. Execute o seguinte comando:dpkg --list | grep linux-image
. Isto mostrará todos os kernels instalados.Note down the names of all the kernels which you want to remove. Anote os nomes de todos os kernels que você deseja remover.
To remove the kernels, run:
sudo apt-get purge linux-image-x.x.x.x-xyz
(replace the kernel name with an appropriate one). Para remover os kernels, execute:sudo apt-get purge linux-image-x.x.x.x-xyz
(substitua aqui com o nome do kernel que você anotou que desejava remover).Update the GRUB:
sudo update-grub2.
Update o GRUB:sudo update-grub2
And, you're done. E está feito.
Bonus: here's a little one-liner to do all that automatically:
Bônus: você também pode fazer tudo isto automaticamente com uma linha de comando:
sudo apt-get purge $( dpkg --list | grep -P -o "linux-image-\d\S+" | grep -v $(uname -r | grep -P -o ".+\d") )
Fonte: <https://askubuntu.com/questions/176322/removing-old-kernel-entries-in-grub>
Nenhum comentário:
Postar um comentário