ElitePad 900 Windows 8 Activation
Just got an ElitePad 900. Strange thing is when I booted it up it said that Windows needed to be activated. So I call HP and they said you will have to send it back. I though that was ridiculous so I...
View ArticleP2V SBS 2011
Just finished a P2V Windows Small Business Server 2011 P2V. What made it a little more difficult was the server that SBS was running on was going to be the hypervizor too. So I had to P2V to one of the...
View ArticleosTicket cron job setup
I had a little bit of a hard time setting up the cron job to retrieve mail on my new osTicket. Here is what I finally figured out. sudo crontab -e If this is the first time you have run this it will...
View ArticleChange Ubuntu Linux Server from DHCP to Static
Changing this setting without a GUI will require text editing. Open up the /etc/network/interfaces file. I’m going to use nano, but you can choose a different editor sudo nano /etc/network/interfaces...
View ArticleMisc Commands
Restart Apache sudo /etc/init.d/apache2 reload Move all files from a directory to another one mv /somefolder/* /anotherfolder Delete all Files and Folder Example rm -rf /home/jerry/movies/
View ArticleAdding a Second Drive to your Ubuntu Server
Finding the New Hard Drive in Ubuntu Only One Drive you should see this ls /dev/sd* /dev/sda /dev/sda1 /dev/sda2 /dev/sda5 Adding a second drive you should see this ls /dev/sd* /dev/sda /dev/sda1...
View ArticleUpdate your Ubuntu Server
sudo apt-get update # Fetches the list of available updates sudo apt-get upgrade # Strictly upgrades the current packages sudo apt-get dist-upgrade # Installs updates (new ones)
View ArticleInstalling VMware tools on an Ubuntu guest
Simple and seems to be the best way. apt-get install open-vm-tools
View ArticleCannot be loaded because the execution of scripts is disabled on this system
Start PowerShell but Right Click and Run as Administrator Then run this and you will be all set. Set-ExecutionPolicy RemoteSigned
View ArticleSetup SFTP on Ubuntu
I am not sure this is the best way to do this nor am I sure it is that secure. But this is how I did it. Edit sudo nano /etc/ssh/sshd_config modify the Subsystem sftp line to look like the following:...
View Article