dimanche 25 mai 2025

remove_old_kernels.sh

#!/bin/bash

# Run this script without any param for a dry run

# Run the script with root and with exec param for removing old kernels after checking

# the list printed in the dry run


uname -a

IN_USE=$(uname -a | awk '{ print $3 }')

echo "Your in use kernel is $IN_USE"


OLD_KERNELS=$(

    dpkg --list |

        grep -v "$IN_USE" |

        grep -Ei 'linux-image|linux-headers|linux-modules' |

        awk '{ print $2 }'

)

echo "Old Kernels to be removed:"

echo "$OLD_KERNELS"


if [ "$1" == "exec" ]; then

    for PACKAGE in $OLD_KERNELS; do

        yes | apt purge "$PACKAGE"

    done

else

    echo "If all looks good, run it again like this: sudo remove_old_kernels.sh exec"

fi


samedi 24 mai 2025

notes divers ubuntu ***

github.com/mehradi-github/ref-ubuntu

github.com/Correia-jpv/fucking-Awesome-Linux-Software

github.com/Vasco0x4/Neo-AI

github.com/DragonComputer/Dragonfire  cudagpu

---

install on ubuntu24.04

wget -qO- https://omakub.org/install | bash

---

github.com/excited-bore/list-ppa

github.com/themrinalsinha/pkg_manager

github.com/a-bentofreire/renametoix

github.com/Utappia/uCareSystem

github.com/husujo/ubuntu

github.com/ivangabriele/clamav-desktop

github.com/erik1066/pop-os-setup

github.com/pacstall/pacstall-programs

pacstall.dev

github.com/BILLYG1010/Scrip-odoo17

github.com/cryinkfly/Autodesk-Fusion-360-for-Linux

launchpad.net/~cppiber

vintagesucks.github.io/ppa/ppa-setup.html

github.com/EdoardoTosin/Ubuntu-Server-Pi-Hole-Unbound

github.com/SoftCreatR/imei

chatboxai.app/install_chatbox/linux

github.com/ani1parmar/ubuntu-desktop-setup

github.com/jeremehancock/hostminder

github.com/jeremehancock/dnsminder

Witsy desktop AI assistant

sourceforge.net/projects/witsy.mirror/

mrv2 Professional player and review tool for vfx, animation and computer graphics.

github.com/ggarra13/mrv2/releases


mercredi 7 mai 2025

GEM Graphics Environment for Multimedia

gem.iem.at

GEM (Graphics Environment for Multimedia) is a library to be used with Miller Puckette's Max-like realtime-computermusic-software "Pure Data" (Pd), which allows to draw and control openGL- and pixel-graphics (like video) in realtime from within Pd.

Archives du blog