Skip to content

Instantly share code, notes, and snippets.

@xserveraws
xserveraws / fix.sh
Created November 16, 2022 05:52 — forked from jeffersfp/fix.sh
dpkg: warning: files list file for package `*****' missing, assuming package has no files currently installed
#!/bin/bash
set -e
# Clean out /var/cache/apt/archives
apt-get clean
# Fill it with all the .debs we need
apt-get --reinstall -dy install $(dpkg --get-selections | grep '[[:space:]]install' | cut -f1)
DIR=$(mktemp -d -t info-XXXXXX)
for deb in /var/cache/apt/archives/*.deb
@xserveraws
xserveraws / fix.sh
Created November 16, 2022 05:52 — forked from jeffersfp/fix.sh
dpkg: warning: files list file for package `*****' missing, assuming package has no files currently installed
#!/bin/bash
set -e
# Clean out /var/cache/apt/archives
apt-get clean
# Fill it with all the .debs we need
apt-get --reinstall -dy install $(dpkg --get-selections | grep '[[:space:]]install' | cut -f1)
DIR=$(mktemp -d -t info-XXXXXX)
for deb in /var/cache/apt/archives/*.deb
@xserveraws
xserveraws / setup.md
Created December 16, 2021 04:11 — forked from threedaymonk/setup.md
IPv6 on home network behind NAT

Gateway machine

Topology

      - _                        NAT         Home network
         )           IPv4         |
        )<----> ISP <----> Router-|       

Public ) |

@xserveraws
xserveraws / .htaccess
Created December 2, 2021 03:57 — forked from mhulse/.htaccess
Wordpress demo .htaccess file...
# http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/
<FilesMatch "\.(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$">
order allow,deny
deny from all
</FilesMatch>
# http://css-tricks.com/snippets/htaccess/shock-teenage-gangsters-with-wp-config-redirect/
Redirect 301 /wp-config.php http://svr.gov.ru/
# Turn on the rewrite engine:
@xserveraws
xserveraws / gist:98eeb94dad3e5e72cce995dc3d8010e7
Created December 12, 2020 08:13 — forked from Mohitsharma44/gist:8d21bbf8efe3bf161b16353e09e99b82
Installing gnuradio, osmosdr and hackrf on mac using mac ports
# Unfortunately this only works with macports for now. I have installed homebrew and macports on my mac
# and use macports explicitly for gnuradio stuff and homebrew as my default package manager. So far
# my system is not broken. I'm considering it as a good sign :p
Steps:
- Install MacPorts (if you havent) following the instructions from here: https://guide.macports.org/#installing
- Install python using Homebrew: brew install python
@xserveraws
xserveraws / create-deb-samba4.sh
Created November 17, 2020 05:13 — forked from jniltinho/create-deb-samba4.sh
Create Deb Samba4
#!/bin/bash
## Create DEB package Samba4 4.12.3 (Ubuntu 18.04)
## http://sig9.hatenablog.com/entry/2017/12/04/000000
## https://wiki.samba.org/index.php/Package_Dependencies_Required_to_Build_Samba
## https://github.com/jniltinho/go-samba4/releases
## https://www.tecmint.com/install-samba4-active-directory-ubuntu/
## https://blog.ricosharp.com/posts/2019/Samba-4-Active-Directory-Domain-Controller-on-Ubuntu-18-04-Server
## http://www.bosontreinamentos.com.br/linux/samba-4-instalacao-e-provisionamento/
## https://wiki.samba.org/index.php/Installing_RSAT
## https://www.tecmint.com/manage-samba4-ad-from-windows-via-rsat
@xserveraws
xserveraws / README.md
Created October 21, 2020 17:11 — forked from plieningerweb/README.md
Fix ignored mode of tmpfs mount on /tmp
@xserveraws
xserveraws / my.cnf
Last active October 20, 2020 18:07 — forked from asanchez75/my.cnf
my.cnf settings and notes
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.