Archive for the 'Ubuntu' Category

Connecting NetBeans 6.7 to SVN on Ubuntu

Posted by pebuchmann_super on 23 May 2009 | Tagged as: Software Development, Ubuntu, Uncategorized

These are the steps I had to take to establish a connection from within NetBeans 6.7 to my Subversion Repository via a https connection. Install svn -> sudo apt-get install svn Install an svn client, I chose RapidSVN -> sudo apt-get install rapidsvn In NetBeans select Team > SVN>Check out… and fill in the Form. [...]

Ubuntu on the OLPC

Posted by pebuchmann_super on 21 May 2009 | Tagged as: Ubuntu

Instructions on how to install Ubuntu on the One Laptop per Chiled PC.

MySQL Basics on Ubuntu 8.10

Posted by pebuchmann_super on 15 Mar 2009 | Tagged as: Ubuntu

Information taken from help.ubuntu.com Starting  mysql  shell mysql -u root mysql> SET PASSWORD FOR ‘root’@'localhost’ = PASSWORD(‘yourpassword’); With password mysql -u root -p Create a mysql database mysql> CREATE DATABASE database1; Create a mysql user mysql> GRANT ALL PRIVILEGES ON *.* TO ‘yourusername’@'localhost’ IDENTIFIED BY ‘yourpassword’ WITH GRANT OPTION; mysql> GRANT SELECT, INSERT, UPDATE, DELETE, [...]

Postgres Basics on Ubuntu 8.10

Posted by pebuchmann_super on 15 Mar 2009 | Tagged as: Ubuntu

Installation sudo apt-get install postgresql postgresql-client postgresql-contrib Changing the User Password sudo -u postgres psql postgres ALTER USER postgres WITH ENCRYPTED PASSWORD ‘<***password***>’; \q Creating a New DB sudo -u postgres createdb dev Setting up PgAdmin III Don’t know exactly what this is good for, better performance? sudo -u postgres psql < /usr/share/postgresql/8.3/contrib/adminpack.sqll Installing PgAdmin [...]

Installing Java on Ubuntu

Posted by pebuchmann_super on 14 Mar 2009 | Tagged as: Ubuntu

This is a short and to the point instcruction about how to install Java on an Ubuntu system: http://www.javadesign.info/SystemsHardware/OS/Ubuntu/install-java-on-ubuntu List the installed Java versions: update-java-alternatives -l Change from one version to another: sudo update-java-alternatives -s <JRE Version>