You need to have the application curl installed. Most Linux distros will already have it included. However, you may need to run either:
$ sudo dnf -y install curl
#!/usr/bin/bash | |
sudo apt-mark auto $(apt-mark showmanual | grep -E "^linux-([[:alpha:]]+-)+[[:digit:].]+-[^-]+(|-.+)$") |
You need to have the application curl installed. Most Linux distros will already have it included. However, you may need to run either:
$ sudo dnf -y install curl
#!/bin/bash | |
sudo apt install sssd heimdal-clients msktutil | |
sudo mv /etc/krb5.conf /etc/krb5.conf.default | |
COMP=$HOSTNAME | |
read -p 'What is the domain name? (example: URLFINANCIAL without the .local) ' DOMAIN | |
LCASEDOMAIN=`echo "$DOMAIN" | tr '[:upper:]' '[:lower:]'` |
FROM ubuntu:latest | |
RUN apt-get update \ | |
&& apt-get install -y python3-pip python3-dev \ | |
&& cd /usr/local/bin \ | |
&& ln -s /usr/bin/python3 python \ | |
&& pip3 install --upgrade pip | |
# INSTALL DEPENDENCIES | |
RUN apt-get install -y curl unzip openjdk-8-jre-headless xvfb libxi6 libgconf-2-4 |
#!/bin/bash | |
find . -type d -empty -exec rm -i -R {} \; |
#!/bin/bash | |
while true; | |
do | |
printf "$(awk -v c="$(tput cols)" -v s="$RANDOM" 'BEGIN{srand(s);while(--c>=0){printf("\xe2\x96\\%s",sprintf("%o",150+int(10*rand())));}}')"; | |
done |
cd ~/Downloads
to change into your downloads directorysudo apt install jdk-11.0.6_linux-x64_bin.deb
update-alternatives --config java
sudo apt autoremove | |
sudo apt clean | |
sudo apt-get autoclean | |
sudo journalctl --vacuum-time=3d | |
rm -rf ~/.cache/thumbnails/* | |
set -eu | |
snap list --all | awk '/disabled/{print $1, $3}' | | |
while read snapname revision; do | |
snap remove "$snapname" --revision="$revision" |