You can use this automated script to install lots of useful software: https://gist.github.com/vanyasem/3541a877ea34569071a3d71e06da8eda
Name - Source - Description
Accessories:
Shutter - AppCenter - Screenshot tool (Clip2net / ShareX alternative)
You can use this automated script to install lots of useful software: https://gist.github.com/vanyasem/3541a877ea34569071a3d71e06da8eda
Name - Source - Description
Accessories:
Shutter - AppCenter - Screenshot tool (Clip2net / ShareX alternative)
| # You can run this script as many times as you want, it won't harm your machine | |
| # Android Studio and/or JetBrains Toolbox may be outdated, but they have a built-in updater, so that's not a big deal | |
| # | |
| # List of Software included: | |
| # BEGIN LITE | |
| # - Main Python packages (+bpython) | |
| # - PulseAudio Equalizer | |
| # - openssh-server & sshfs & denyhosts | |
| # - "joke" packages: sl & cowsay & fortune & lolcat | |
| # - htop, iotop |
| # Server Config: Pentium D 945 2 cores, 1 Gb DDR2 RAM, WD 750 Gb SATA HDD | |
| # Installs: | |
| # Nextcloud (Apache + PHP 7, MariaDB) | |
| # Collabora Online Development Edition (CODE) via Docker | |
| # LetsEncrypt with Apache support | |
| read -p 'Nextcloud domian: ' nextclouddomian | |
| read -p 'Nextcloud domian escaped (i.e: nextcloud\\.domian\\.org): ' collaboradomianescaped | |
| read -p 'Collabora domian: ' collaboradomian | |
| read -p 'Server Admin Email: ' adminemail |
| # DEPENDS: sudo apt install -y wget tar unzip lib32stdc++6 lib32z1 | |
| # DEPENDS: sudo apt install -y openjdk-8-jdk libc6-dev-i386 lib32z1 default-jdk | |
| # ARCH: gitlab-runner jdk8-openjdk | |
| #echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55\nd56f5187479451eabf01fb78af6dfcb131a6481e" > "/var/lib/gitlab-runner/licenses/android-sdk-license" | |
| #echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "/var/lib/gitlab-runner/licenses/android-sdk-preview-license" | |
| ANDROID_COMPILE_SDK="26" | |
| ANDROID_BUILD_TOOLS="26.0.1" | |
| ANDROID_SDK_TOOLS="3859397" | |
| ANDROID_EMULATOR_SDK="26" |
| #!/usr/bin/env bash | |
| # REVISED ON 20/11/19 | |
| # FULLY TESTED ON 15/11/19 | |
| # I assume you've already installed Arch with base and base-devel groups and any bootloader. | |
| # Run this as a user with sudo access. DON'T RUN THE SCRIPT AS ROOT. | |
| # Make sure to adjust sudo timeout or building AUR packages will fail. | |
| # You need to enable pacman's multilib repository in /etc/pacman.conf | |
| # Sets big font on HiDPI screens. Uncomment if needed |
| #!/bin/bash | |
| # This script is a draft combination of the script found at https://gist.github.com/tcarrondo | |
| # It is more or less to remember what I have done to make it work for my Fairphone 2 with UBports ubuntu touch | |
| # Combined by me: Sebastian Gallehr <[email protected]> | |
| # Thanks to: Tiago Carrondo <[email protected]> | |
| # Thanks to: Romain Fluttaz <[email protected]> | |
| # Thanks to: Wayne Ward <[email protected]> | |
| # Thanks to: Mitchell Reese <[email protected]> | |
| # --------------- [ Server ] ---------------- # | |
| CAL_URL="https://..." # insert the CalDAV URL here |
I hereby claim:
To claim this, I am signing this object:
| # Add RPMFusion repos: | |
| curl https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-27.noarch.rpm --output rpmfusion.rpm | |
| sudo dnf install -y rpmfusion.rpm | |
| # Flash: | |
| sudo dnf install yum install https://mirror.yandex.ru/fedora/russianfedora/russianfedora/free/fedora/russianfedora-free-release-stable.noarch.rpm | |
| sudo dnf install https://mirror.yandex.ru/fedora/russianfedora/russianfedora/nonfree/fedora/russianfedora-nonfree-release-stable.noarch.rpm | |
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz | |
| CPU Family: 0x6 |
| sudo apt install unattended-upgrades | |
| sudo nano /etc/apt/apt.conf.d/50unattended-upgrades | |
| "${distro_id}:${distro_codename}-updates"; | |
| "${distro_id}:${distro_codename}-backports"; | |
| ... | |
| Unattended-Upgrade::Mail "[email protected]"; | |
| Unattended-Upgrade::MailOnlyOnError "false"; | |
| ... | |
| Unattended-Upgrade::Remove-Unused-Kernel-Packages "true"; | |
| Unattended-Upgrade::Remove-Unused-Dependencies "true"; |