Anyone who’s been using 12.04 over the past month or so may have noticed some pretty significant changes in the way we do DNS resolving in Ubuntu. This is the result of the implementation of: foundations-p-dns-resolving Here is a description of the two big changes that happened: Switch to resolvconf for /etc/resolv.conf management resolvconf is Full Article…
Search the Wiki
Example syntax for Secure Copy (scp)
What is Secure Copy? scp allows files to be copied to, from, or between different hosts. It uses ssh for data transfer and provides the same authentication and same level of security as ssh. Examples Copy the file “foobar.txt” from a remote host to the local host $ scp your_username@remotehost.edu:foobar.txt /some/local/directory Copy the file “foobar.txt” Full Article…
Ubuntu Server 10.4 Lucid – add-apt-repository: command not found
Since Ubuntu 9.10 (Karmic Koala) users have been able to add PPAs (Personal Package Archives) to install packages via the command line as follows: sudo add-apt-repository ppa:<repository name> Typically this works out of the box, but not with a minimal Ubuntu Server installation (such as I use in my VMware vSphere environment) which produces the Full Article…
Installing Alfresco (3.x, 4.x) on (64bit) Ubuntu Server 10.04.4
Recently I got into a twitter discussion about installing Alfresco Community on 32bit Ubuntu. Alfresco only provides 64bit installers these days (all-in-one), and the Tomcat distribution is no more. Since Alfresco is a Java app, the app doesn’t matter. It is Java and the helper applications needed, that need to be 32/64bit. This blog will Full Article…
Manual de Instalação do OpenERP 6.1
Descreveremos aqui o procedimento de instalação do OpenERP 6 no sistema operacional Linux. Este procedimento foi criado usando a distribuição Linux Ubuntu 10.04 LTS nas versões Desktop e Server e na versão 6.0.1 do OpenERP. Podemos considerar este documento que você está lendo como o manual “oficial” da comunidade brasileira para a instalação básica do Full Article…
Remove .html from category or product URL for Magento webshop
Can you help me discover the solution to removing .html from Magento category URL? How configure magento such that the category url does not have “.html” in the url? If you want to remove .html from all Magento’s category URL then Follow the below steps Go to System -> Config -> Catalog -> Search Engine Full Article…
apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName
To solve this error follow these instructions: Open up httpd.conf: nano /etc/apache2/httpd.conf Add this line to the file: ServerName localhost Open up hosts file: nano /etc/hosts Remove this line: 127.0.1.1 YourPC’sName Restart apache2: service apache2 restart
Ubuntu 10.04 console resolution
In Grub2 the vga= parameter is deprecated. As root edit /etc/default/grub uncomment the GRUB_GFXMODE=640×480 and change the resolution to something you can use e.g. 1024×768 Edit /etc/grub.d/00_header search for: set gfxmode=${GRUB_GFXMODE} On the next line insert: set gfxpayload=keep Verify that the new line is before insmod gfxterm run update-grub run reboot to confirm that your Full Article…
SobiPro Templating How To…
I am not against anyone making money from their great work and the developers of SobiPro are no exception. However I do believe that if you are providing a solution that is supposedly for free that it comes with some basic documentation on how to use the product. However to access this basic documentation a Full Article…
Setting up FTP for your website Ubuntu 11.04
File Transfer Protocol (FTP) is a standard network protocol used to transfer files from one host to another over a TCP-based network, such as the Internet. Its most common use is uploading your website files to your webserver, allowing you to develop your website, upload it via FTP then refresh the page to see the Full Article…