SAMBA 4 as AD Domain Controller
Posted onSamba 4 Active Directory Domain Controller on Ubuntu 18.04 Server – Rico Sharp
Samba 4 Active Directory Domain Controller on Ubuntu 18.04 Server – Rico Sharp
VPN – Configuring an IPsec Remote Access Mobile VPN using IKEv2 with EAP VPN – IKEv2 with EAP
sudo apt update sudo apt install network-manager network-manager-gnome openvpn openvpn-systemd-resolved network-manager-openvpn network-manager-openvpn-gnome sudo apt purge openresolv dhcpcd5 sudo nano /etc/NetworkManager/NetworkManager.conf [main] plugins=ifupdown,keyfile dhcp=internal [ifupdown] managed=true sudo nano /etc/nsswitch.conf change this line hosts: files mdns4_minimal [NOTFOUND=return] […]
defaults read /System/Library/PrivateFrameworks/Seeding.framework/Versions/Current/Resources/SeedCatalogs.plist
When you’re booting your Mac from the recovery partition and are planning to reinstall OS X, you might be met by the following message: An error occurred while preparing the installation. Try running again This is normally the signing on the installer has expired. You need to set the system clock back to when the […]
https://haproxy.debian.net
It seems Apple has brought back the hidden option at some point with macOS Catalina. To enable the chime To disable the chime To disable the chime
/usr/bin/security authorizationdb write system.login.screensaver “authenticate-session-owner-or-admin”
Indicator stalk: 9181010Wiper stalk: 90243394
brew install pkg-config autoconf automake openssl qt libtool mkdir ~/src cd ~/src git clone https://github.com/chris2511/xca.git cd xca ./bootstrap mkdir build && cd build ../configure –prefix=/tmp/xca –with-openssl=/usr/local/opt/openssl –with-qt=/usr/local/Cellar/qt/5.13.1/ replace in Makefile (near bottom): – -codesign –force –deep –signature-size=96000 -s "Christian Hohnstaedt" $(DMGSTAGE)/xca.app –timestamp + -codesign –force –deep –signature-size=96000 -s "YOUR SIGNING IDENTITY" […]
Complete guide to install SSL certificate on your OS X server hosted website – Server – Let’s Encrypt Community Support
Plug the microSD card into a card reader connected to your Mac. The boot volume will be automatically mounted, but it doesn’t contain all the files from the Pi’s primary filesystem. Make sure you have Homebrew installed (instructions here), so you can install the tools you need to mount the filesystem. Using Homebrew, install osxfuse […]
OSBoxes – Virtual Machines for VirtualBox & VMware
https://docs.docker.com/storage/storagedriver/overlayfs-driver/ Use the OverlayFS storage driver | Docker Documentation
UPDATE : You can take the firmware file from VMware Fusion instead of building your own. its located : /Applications/VMware\ Fusion.app/Contents/Library/roms/EFI64.ROM Use this process of adding it to the VM. It has the advantage of supporting the Recovery HD. Here is a copy of the Fusion 11.5.2 Rom efi64_apfs.rom Also remember to have you VM […]
I found the following three ways to boot to macOS recovery in VMware Fusion, sadly they don’t all work in version 11: Add macosguest.forceRecoveryModeInstall = “TRUE” to you .vmx file – however it doesn’t seem to work with APFS volumes Add bios.bootDelay = “5000” to your .vmx file and press CMD+R during boot – doesn’t […]
Use the code below as simple reference to build your own custom playlist from your xtream-codes server. Change the $url and $port values with your main server domain and port values. <?php $url = "domain.com"; $port = 1234; $protocol = "http"; $pls_header = "#EXTM3U"; $json = json_decode(file_get_contents("{$protocol}://{$url}:{$port}/panel_api.php?username={$_GET[‘username’]}&password={$_GET[‘password’]}"), true); $link = "{$protocol}://{$json[‘server_info’][‘url’]}:{$json[‘server_info’][‘port’]}"; if(!isset($_GET[’type’]) || empty($_GET[’type’])){ […]
On the Master server dump a backup of the database you want to resync mysqldump –skip-lock-tables –single-transaction –flush-logs –hex-blob –master-data=2 -q <<dbname>> | gzip -c > ~/dump.sql.gz Move compress backup to Slave server scp ~/dump.sql.gz <<user>>@<<slave-server-ip>>:~/ On the Slave server decompress the backup gunzip ~/dump.sql.gz Get the Master Log Name and Position from the dump, […]
I clearly don’t need to expound on the benefits of master-slave replication for your MySQL database. It’s simply a good idea; one nicety I looked forward to was the ability to run backups from the slave without impacting the performance of our production database. But the benefits abound. Most tutorials on master-slave replication use a […]
This article will discuss deploying FileVault 2 via a Configuration Profile to managed Macs with Jamf Pro using either an Individual Recovery Key, an Institutional Recovery Key, or both together. Creating an Institutional Recovery Key Skip this section if you do not plan to deploy an Institutional Recovery Key. Jamf has excellent documentation on how […]