Tag: 4geeks

Posted in 4geeks

Remote Desktop on command line

This script allows the user to enable remote desktop on the Mac command line. #!/bin/bash # Usage:…

Posted in 4geeks

Restore MySQL Databases taken from an old server

You’ve made a mistake. You pulled off the MySQL folder from an old server instead of doing…

Posted in 4geeks

Install Ruby on Ubuntu

Install gpg2 and curl sudo apt-get install gnupg2 curl or sudo apt install gnupg2 curl Follow directions…

Posted in 4geeks

Install Ruby on macOS

Install HomeBrew following https://brew.sh/ Install RVM according to these instructions https://rvm.io/rvm/install Install Ruby e.g. version 2.x.x rvm…

Posted in 4geeks

SSH Tunnel

In the terminal, type the following: touch worktunnel; chmod +x worktunnel; pico worktunnel Copy the code below…

Posted in 4geeks 3-D Modeling

Run Blender on the Command Line on macOS

Add this to your .bashrc or .bash_profile file: alias blender=’/Applications/Blender/blender.app/Contents/MacOS/blender’ To open a file on the command…