A decade of technology research
According to Deloitte
According to Deloitte
Requisite list.txt: list of hosts ~/.ssh/id_rsa.pub: keys to add Bash script copy.sh Explanation sshpass pass your password to the ssh prompt -o StrictHostKeyChecking=no ignores the “host identity not established” prompt, allowing sshpass to do its job How to execute Reference…
It’s not that hard… provided you know where to look. First, find out the model ID by going You’ll get something like this, where “Realtek” is the chip manufacturer, which is usually the case for IPTime Next, google the ID,…
B2 support for duplicity Must be installed with pip for python 2 apt-get install python-pippip install b2apt-get install duplicityadd-apt-repository ppa:duplicity-team/ppaapt-get updateapt-get –only-upgrade install duplicityduplicity /mount/point b2://<box’s application ID>:<key>@<box id> Worth noting that the documentation on backblaze themselves is wrong, you…
sudo mkdir -p /Users/Shared sudo chown root:wheel /Users/Shared sudo chmod -R 1777 /Users/Shared Non descriptive error. A trademark of Apple (r)
Access drive.google.com/#quota
Mailwizz has a pretty convenient ‘one-command install’ available here. However I hit a snag when trying to run it [cc lang=”bash”] RUN schema.sql… /root/mailwizz-install.sh: line 7: /var/www/mailwizz/html/apps/common/data/install-sql/schema.sql: Permission denied [/cc] The reason is SELinux doesn’t allow the docker daemon to…
Pictured: Android loading screen. Probably Ice Cream Sandwich? It’s a surprise they didn’t use Windows CE
To ignore a file [cc] git update-index –assume-unchanged file.to.ignore [/cc] To undo [cc] git update-index –no-assume-unchanged file.to.ignore [/cc] Alternatives: [cci lang]git stash[/cci], [cci lang].gitignore[/cci], but I need to keep the file in the working copy, and not touch the gitignore…