September 30, 2007
I had a problem where I tested the Professional version of Storegrid but then ended up needing to install the Service Provider Edition. Some things need to be configured an removed to easily do that.
Mac OSX:
in terminal:
ps aux | grep StoreGrid
kill -9 all processes listed
Remove Vembu directory where it was installed. I had specified /Applications at install time.
Remove Storegrid items from /System/Library/Startup Items
Linux:
in terminal window:
ps aux | grep StoreGrid
kill -9 all processes listed
Remove storegrid user
Remove storegrid user’s home folder
Leave a Comment » |
Software, linux |
Permalink
Posted by Pat McKay
September 29, 2007
sudo bash
aptitude install ntpdate
/etc/network/if-up.d/ntpdate
You can add that last line to crontab to do it hourly.
example:
nano /etc/crontab
paste in at the bottom:
47 * * * * root /etc/network/if-up.d/ntpdate
That will execute ntpdate 47 minutes after each hour.
Powered by ScribeFire.
Leave a Comment » |
linux, ubuntu |
Permalink
Posted by Pat McKay
September 20, 2007
sudo su
aptitude install zlib1g libpng12-0 libjpeg62 flex bison libxml2-dev libfreetype6 libfreetype6-dev build-essential libstdc++5 unzip openssl libssl-dev
cd /usr/src
wget http://www.storegrid.net/products/storegrid/sp/922221225/VembuStoreGrid_2_2_5_SP_DBN.zip
unzip VembuStoreGrid_2_2_5_SP_DBN.zip
./VembuStoreGrid_2_2_5_SP_DBN.bin
That should get you going…
Leave a Comment » |
Software, ubuntu |
Permalink
Posted by Pat McKay
September 20, 2007
This was posted in Ubuntu Forums and revised recently. It resolves issues when trying to view something with shockwave-flash within browsers of 64bit Ubuntu. The poster made the process incredibly simple.
Ubuntu Forum
Leave a Comment » |
ubuntu |
Permalink
Posted by Seth McGill
September 19, 2007
In linux a hard drive needs an access point in the filesystem. Here is a quick and dirty method to get a hard drive to mount every time to the same place at startup:
Create an empty directory for the drive:
sudo mkdir /disk2
Use your favorite disk utility to create an ext3 partition.
edit fstab to mount at startup:
sudo nano /etc/fstab
add the following line (adjust directory and drive to match your configuration):
/dev/hdb1 /disk2 ext3 defaults 0 0
Ctrl-X, Y to save the file
sudo mount -a
If everything went right you should have access to the disk from your formerly empty directory.
Leave a Comment » |
linux, ubuntu |
Permalink
Posted by Pat McKay