This file contains 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
- Install Python, git, build-essential from dietpi-software | |
- Run rpi-source: https://github.com/notro/rpi-source/wiki | |
- Enable IP Forwarding | |
- nano /etc/sysctl.conf: | |
- net.ipv4.ip_forward = 1 | |
- sudo apt-get install libmnl-dev | |
- git clone https://git.zx2c4.com/WireGuard |
This file contains 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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains 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
# (edits /conf/config.xml symlink to /cf/conf/config.xml) | |
viconfig | |
# add for example fragment 1300;mssfix to a client | |
# <openvpn> | |
# <openvpn-client> | |
# <topology>subnet</topology> | |
# <custom_options>fragment 1300;mssfix 1300</custom_options> | |
# restart all OpenVPN service |
This file contains 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
# https://kb.vmware.com/s/article/1189 | |
grep -l 'tools.syncTime = "FALSE"' /vmfs/volumes/datastore1/*/*.vmx | xargs sed -i 's/tools.syncTime = "FALSE"/tools.syncTime = "TRUE"/' |
This file contains 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 | |
# /vmfs/volumes/datastore1/shutdown-all-vms.sh | |
shutdownmode=soft # could be soft,hard,force | |
VMLIST=`esxcli vm process list | grep "World ID" | cut -d \: -f2` | |
for config in ${VMLIST} | |
do | |
esxcli vm process kill --type=${shutdownmode} --world-id=${config} | |
done | |
sleep 2 | |
echo "show esxcli vm process list" |
This file contains 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 | |
startit() { | |
vmids=$@ | |
for vmid in $vmids | |
do | |
echo -n "check $vmid powerstate: " | |
stat1=$(vim-cmd vmsvc/power.getstate "$vmid" | grep "off") | |
if [ "$stat1" == "Powered off" ] | |
then |
This file contains 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
git filter-branch --env-filter 'if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]; then | |
[email protected]; | |
GIT_AUTHOR_NAME="Your Name"; | |
GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL; | |
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"; fi' -- --all | |
git push origin master -f | |
https://stackoverflow.com/questions/4981126/how-to-amend-several-commits-in-git-to-change-author |
This file contains 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
git clone https://github.com/sipwise/rtpengine.git | |
cd rtpengine/ | |
git archive --format=tar.gz --prefix=ngcp-rtpengine-4.5.0/ HEAD >/root/rpmbuild/SOURCES/ngcp-rtpengine-4.5.0.tar.gz | |
cd el | |
yum-builddep rtpengine.spec | |
yum install json-glib json-glib-devel libevent-devel libpcap-devel | |
yum install kernel-devel | |
cd /root/rpmbuild/SPECS | |
rpmbuild -ba rtpengine.spec |
This file contains 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
echo 100 > "/sys/module/ipmi_si/parameters/kipmid_max_busy_us" |
This file contains 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
##### | |
# Signalling Server Setup ex: EasyRTC | |
# See https://easyrtc.com/docs/guides/easyrtc_server_install.php | |
# This assumes you followed https://gist.github.com/sbeleidy/f4cd7e96dc0910dbc27cc6845d8b4d22 and | |
# https://gist.github.com/sbeleidy/3a23999d8e9e5da9adc6159c3742b42b for SSL and reTURN setup | |
##### | |
# Install node | |
sudo apt-get install nodejs | |
sudo apt-get install npm |