?> May 2008 Archives - Matt Gibson

Archive for May, 2008



Leave home even less, consume even more with this handy company.

I was looking at a couple local sites today while trying to find a place to trade my cellular phone for a different model.. and I came across this advertisement. I almost didn’t take a second look until I saw the little interac machine at the bottom. Interesting. Check it out. Now, I’m not complaining, [...]

How to fix your hackable SSH on Debian and Ubuntu Servers

If you’re running debian or ubuntu, your ssh keys are vulnerable. Follow these steps to regenerate them and secure your box back up. apt-get update apt-get upgrade cd /etc/ssh/ rm ssh_host_dsa_key rm ssh_host_dsa_key.pub rm ssh_host_rsa_key rm ssh_host_rsa_key.pub ssh-keygen -t dsa (filename as /etc/ssh/ssh_host_dsa_key) ssh-keygen -t rsa (filename as /etc/ssh/ssh_host_rsa_key) /etc/init.d/ssh restart

Adding Sharepoint WSP templates on SBS 2003

Here’s a quick list so you don’t have to type in all those CLI lines.. This will add the 20 application templates to Sharepoint 3 on your SBS or other Sharepoint server.. stsadm –o addsolution –filename AbsenceVacationSchedule.wsp stsadm -o deploysolution -name AbsenceVacationSchedule.wsp -allowgacdeployment -immediate stsadm –o addsolution –filename BudgetingTrackingMultipleProjects.wsp stsadm –o deploysolution –name BudgetingTrackingMultipleProjects.wsp -allowgacdeployment [...]