Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iexNote
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex| echo "Downloading gcc source files..." | |
| curl https://ftp.gnu.org/gnu/gcc/gcc-5.4.0/gcc-5.4.0.tar.bz2 -O | |
| echo "extracting files..." | |
| tar xvfj gcc-5.4.0.tar.bz2 | |
| echo "Installing dependencies..." | |
| yum -y install gmp-devel mpfr-devel libmpc-devel | |
| echo "Configure and install..." |
first delete it in case a root password was previously created:
sudo apt-get purge mysql-server mysql-client mysql-common mysql-server-core-5.5 mysql-client-core-5.5
sudo rm -rf /etc/mysql /var/lib/mysql
sudo apt-get autoremove
sudo apt-get autoclean
then install it:
| <?PHP | |
| /** | |
| * Transfer Files Server to Server using PHP Copy and PHP ZipArchive | |
| * @link https://glowLogix.com | |
| */ | |
| /* Source File URL */ | |
| $remote_file_url = 'http://example.com/filename.zip'; | |
| /* New file name and path for this file */ |
| #!/usr/bin/env bash | |
| # Ubuntu Server or VM Cleaner. Safe by default; aggressive when asked. | |
| # Example safe: sudo ./clean.sh | |
| # Example aggressive: sudo JOURNAL_DAYS=3 AGGRESSIVE=1 ./clean.sh | |
| # Enable Docker image prune (images only): sudo ./clean.sh --docker-images | |
| # Tested on Ubuntu 20.04, 22.04, 24.04 (server/VM images). | |
| set -Eeuo pipefail | |
| trap 'rc=$?; echo "Error on line $LINENO: $BASH_COMMAND (exit $rc)"; exit $rc' ERR | |
| IFS=$'\n\t' |