Click here to download old versions of Chrome for Linux, Mac and Windows.
The download_url field of the desired section houses the URL to the download.
Alternatively, for not too old versions, you can get it directly here.
# Config for Intel WiFi6 AX201 | |
ctrl_interface=/var/run/hostapd | |
ctrl_interface_group=0 | |
logger_syslog=-1 | |
logger_syslog_level=2 | |
logger_stdout=-1 | |
logger_stdout_level=1 | |
ssid=AwesomeWifi |
Proxmox VE 6.x release includes a feature to add custom cloud-init configs. Unfortunately there is poor documentation, so I had to figure this out by adding pieces of information together.
The cloud-init files need to be stored in a snippet. This is not very well documented:
Storage View -> Storage -> Add -> Directory
snippets
, and specify any path on your host such as /snippets
Content
choose Snippets
and de-select Disk image
(optional)user-data, meta-data, network-config
files to your proxmox server in /snippets/snippets/
(the directory should be there if you followed steps 1-3)Prevent creation of vmmem files in VMware (Windows)
VMWare creates .vmem
files to back the guest RAM. On the host this causes disk thrashing especially during powering on and off the guest.
Add the following lines to the .vmx
file to prevent creation of .vmem
files. This will reduce disk IO and VM performance will improve especially on non-SSD disks.
system/core/rootdir/init.rc
according to init.rc.diff
. Make sure you mount all the cgroup subsystems needed (cpu, cpuacct, cpuset, memory, pids, devices, freezer, blkio) under /sys/fs/cgruop
, otherwise lxc won't find them;emulator -kernel kernel-file-path
) and use adb shell and dmesg to check if everything is doing ok.Zimbra Version: Release 8.6.0_GA_1153.RHEL7_64_20141215151110 RHEL7_64 FOSS edition
Based on Zimbra Article KB 22434 : https://wiki.zimbra.com/wiki/Installing_a_LetsEncrypt_SSL_Certificate
Log on Zimbra user then stop proxy and mail box service for renew proccess.
su zimbra
svc usb setFunction rndis | |
ip addr add 192.168.137.2/24 dev rndis0 | |
ip link set dev rndis0 up | |
ip route add default via 192.168.137.1 dev rndis0 | |
ndc resolver setnetdns rndis0 local 8.8.8.8 8.8.4.4 |
# import config. | |
# You can change the default config with `make cnf="config_special.env" build` | |
cnf ?= config.env | |
include $(cnf) | |
export $(shell sed 's/=.*//' $(cnf)) | |
# import deploy config | |
# You can change the default deploy config with `make cnf="deploy_special.env" release` | |
dpl ?= deploy.env | |
include $(dpl) |