Skip to content

Instantly share code, notes, and snippets.

View fjd's full-sized avatar

Frank J. Dürring fjd

  • condero Aktiengesellschaft
  • Heilbronn, Germany
View GitHub Profile
# If Debian 11 is ran on a LXC container (Proxmox), SSH login and sudo actions can be slow
# Check if in /var/log/auth.log the following messages
Failed to activate service 'org.freedesktop.login1': timed out (service_start_timeout=25000ms)
-> Run systemctl mask systemd-logind
-> Run pam-auth-update (and deselect Register user sessions in the systemd control group hierarchy)
@joshenders
joshenders / gist:3976698
Last active November 7, 2015 07:15 — forked from vena/gist:2856490
How to install Netatalk 3.1.6 under Debian Wheezy

1. Install dependencies

apt-get install automake avahi-daemon build-essential checkinstall db5.1-util db-util git-core libacl1-dev libavahi-client-dev libdb5.1-dev libgcrypt11 libgcrypt11-dev libpam0g-dev libtool pkg-config

2. Download and unpack source

cd /usr/src/
wget http://prdownloads.sourceforge.net/netatalk/netatalk-3.1.6.tar.gz
tar -xvzf netatalk-3.1.6.tar.gz
@c00kiemon5ter
c00kiemon5ter / dvd2mpg
Created February 27, 2011 10:05
dvd2mpg
#!/usr/bin/env bash
title_clr="$(tput setaf ..)" # or setab
done_clr="$(tput setaf ..)"
madeby_clr="$(tput setaf ..)"
reset_clr="$(tput sgr0)"
shopt -s nocaseglob
set -e
echo -e "${title_clr}DVD to MPG Script$reset_clr"