/cloud
/config
/data
/releases
/current -> X.X.X
/X.X.X
/...
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 | |
mv gogs-repositories gitea-repositories | |
mkdir gitea | |
wget -O gitea https://dl.gitea.io/gitea/1.0.2/gitea-1.0.2-linux-amd64 | |
chmod 755 gitea | |
./gitea web | |
wget -O gitea https://dl.gitea.io/gitea/1.1.4/gitea-1.1.4-linux-amd64 | |
./gitea web |
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 | |
loadkeys de | |
mount /dev/sda5 /mnt | |
mount /dev/sda2 /mnt/boot | |
arch-chroot /mnt | |
bootctl update |
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 | |
# System (Debian) | |
dpkg-reconfigure locales | |
apt-get install mc htop | |
# ZSH | |
apt-get install zsh git | |
chsh -s $(which zsh) | |
cd /usr/local/share | |
git clone https://github.com/robbyrussell/oh-my-zsh.git |
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
loadkeys de | |
setfont lat9w-16 | |
systemctl start dhcpcd | |
timedatectl set-ntp true | |
parted /dev/nvme0n1 | |
(parted) mklabel gpt | |
(parted) mkpart ESP fat32 1MiB 513MiB | |
(parted) set 1 boot on | |
(parted) mkpart primary btrfs 513MiB 100% |
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
<div id="map_container" style="width: 100%; height: 300px; margin-bottom: 10px;"></div> | |
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false&language=en"></script> | |
<script type="text/javascript"> | |
var Markers = [{"address":"ADRESSE","info":"","title":""}]; | |
var Marker = "/path/to/image/marker.png"; | |
(function($, markers, markerIcon) { | |
var map, geocoder, infowindow; |
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 | |
# | |
# fusemount - easy use mount tool with config files | |
# | |
CONFIG=~/.fusemount | |
function usage | |
{ | |
more << EOF |