This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# inspired by https://gist.github.com/rjnienaber/af47fccb8410926ba7ea35f96c3b87fd | |
# You must run this with sudo privilages. | |
# "sudo ./Install_ImageMagick_from_source_with_HEIC_and_WebP_Support-on_Ubuntu_22.04.sh" | |
### START | |
# remove bundled ImageMagick | |
sudo apt remove imagemagick imagemagick-6-common imagemagick-6.q16 | |
# Create your build directory if it doesn't already exist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#[email protected] | |
# This script will flash your N900. It assumes you want to use the MAEMO 5 GLOBAL RELEASE. | |
# Based on trying to understand http://wiki.maemo.org/Updating_the_tablet_firmware#N900 | |
set -e | |
echo "[[ Glenn's Maemo Flasher: [email protected] / @glennzw for comments ]]" | |
type flasher-3.5 >/dev/null 2>&1 || { echo >&2 "I require flasher but it's not installed. Install from http://www.fladnag.net/downloads/telephone/n900/tools/ | |
Once you have done that, you must enable i386 package in your debian based distro by entering the following command in a seperate termianl window .... | |
sudo dpkg --add-architecture i386" ;exit 1; } |