Install Webmin on Ubuntu

Published on Author JFLeave a comment

Sometimes having a simple GUI interface to do tasks on an internal server can be really handy. For that purpose and for free I use Webmin. Super easy to install. Just copy/paste into SSH. sudo sh -c ‘echo “deb http://download.webmin.com/download/repository sarge contrib” > /etc/apt/sources.list.d/webmin.list’ wget -qO – http://www.webmin.com/jcameron-key.asc | sudo apt-key add – sudo apt-get update… Continue reading Install Webmin on Ubuntu

Get list of hyper-vs and computers in windows active directory

Published on Author JFLeave a comment

Here are a couple handy powershell command line scripts to get lists of computers: Get list of virtual machines on a Hyper-V: get-cm > machines.csv Get list of all machines in an Active Directory (second one is delimited): First, install the AD module in powershell: Import-module ActiveDirectory Then: Get-ADComputer -Filter * -Property * | Format-Table… Continue reading Get list of hyper-vs and computers in windows active directory

Ubuntu 14.04.5 LTS (Trusty Tahr) MySQL 5.6 PHP 5.6

Published on Author JFLeave a comment

Installing Ubuntu 14 with MySQL 5.5/5.6 and PHP 5.6 (with Apache 2.4) Things change quickly and you often find yourself on an older version of Ubuntu, but need non-standard installations. This build was completed on 4-27-2017 and should remain relatively stable in terms of instructions. This configuration also picks up after installing a clean copy of Ubuntu.… Continue reading Ubuntu 14.04.5 LTS (Trusty Tahr) MySQL 5.6 PHP 5.6

Problem Installing Laravel Homestead on Windows 8 & 10

Published on Author JFLeave a comment

I was having issues with installing Laravel Homestead on my Windows 10 (and Windows 8) laptop: I installed Vagrant and VirtualBox, rebooted, and was then following these instructions. Note: you should have Git already installed and use Git Bash for running these commands, not Windows CMD, although I started with CMD. I ran this: C:\Users\Data>vagrant… Continue reading Problem Installing Laravel Homestead on Windows 8 & 10