Run locale-gen en_US en_US.UTF-8 pt_BR.UTF-8
or dpkg-reconfigure locales
Note: pt_BR.UTF-8 must be changed to your locale.
Run locale-gen en_US en_US.UTF-8 pt_BR.UTF-8
or dpkg-reconfigure locales
Note: pt_BR.UTF-8 must be changed to your locale.
# https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
sudo apt-get update -y
https://hadler.me/linux/forticlient-sslvpn-deb-packages/
sudo /opt/forticlient-sslvpn/forticlientsslvpn.sh
[13:58:28] Starting 'watch'...
[13:58:28] 'watch' errored after 22 ms
[13:58:28] Error: watch /.../resources/assets/images/ ENOSPC
at exports._errnoException (util.js:1023:11)
at FSWatcher.start (fs.js:1306:19)
at Object.fs.watch (fs.js:1331:11)
This gist seems to be not working anymore
Possible alternative solution https://unix.stackexchange.com/a/508728 ( not tested )
$> deb http://ftp.debian.org/debian jessie-backports main
# Source | |
# https://gist.github.com/scottnonnenberg/fefa3f65fdb3715d25882f3023b31c29 | |
# About | |
# Better Git configuration | |
# https://blog.scottnonnenberg.com/better-git-configuration/ | |
# | |
[user] | |
email = [email protected] | |
name = Scott Nonnenberg |
#!/bin/bash | |
#SOURCE: https://techoverflow.net/2013/10/22/docker-remove-all-images-and-containers/ | |
# Delete all containers | |
docker rm $(docker ps -a -q) | |
# Delete all images | |
docker rmi $(docker images -q) |
<VirtualHost *:80> | |
... | |
AddDefaultCharset utf-8 | |
JkOptions +ForwardURIProxy | |
... | |
</VirtualHost> | |