Ubuntu

  • How to install ImageMagick 6.8 on Linux Mint and Ubuntu

    What is ImageMagick? ImageMagick is a linux program that let you create, edit, display or convert bitmap image on linux workstation or server. ImageMagick supports over a hundred of image formats, some popular format like jpeg, png, pdf, svg, tiff and alot more. With ImageMagick, you can add effects, resize, crop, color change, roate, add text, line, as much as…

  • How to display hidden startup application in Ubuntu and Linux Mint

    If you installed some programs on Ubuntu or Linux Mint, for some reason you decided to uninstall a program or some of them. Sometimes you have problems with those uninstalled programs, they somehow are still in the start up. Means a portions of those uninstalled programs are not cleaned out from your system yet. Some uninstalled programs still load when…

  • How to change mac address on ubuntu

    You can change the Network Card Mac Address on Ubuntu and Linux Mint via GUI (graphic cal user interface) by going to the networking indicator on the top or bottom and select “Edit connection” to configure or create a new connection. Next click “Add” and give a name to the new connection you want to create with the new spoofed…

  • How to change the default OS in an Ubuntu and Windows GRUB dual boot setup

    Even though Linux is a great Operation System, but sometimes there are reasons for us to keep Windows in your computer system. Valve Introduces Steam OS a while ago to support Linux gamers to access and play games in Linux better and easier, but there are many great games aren’t available on Linux yet. Itunes for Apple iPhone/iPod isn’t Linux friendly. For…

  • How to install, config and secure openssh server

    OpenSSH provides end-to-end encrypted replacement of applications such as telnet, rlogin, and ftp. Unlike these legacy applications, OpenSSH never passes anything (including username and password) over the wire in unencrypted form, and provides host authentication, to verify that you really are talking to the system that you think you are and that no one else can take over that session. Currently…

  • Ubuntu Touch and Android dual boot on Google Nexus Devices

    Canonical released Ubuntu Touchversion for mobile devices while ago, but now Canonical officially support dual boot Ubuntu with popular Google Android. Many developers and enthusiasts have great experience with Ubuntu Touch installed on their smart phone with positive reviews. Ubuntu and Android dual boot is still in early stage of development, but Canonical makes it easy for both Ubuntu and Android…

  • How to fix slow performance ubuntu 13.04 running in virtualbox

    Having very slow perform when running Ubuntu 12.10 and 13.04 in virtualbox? It’s because Ubuntu can’t use graphics card for acceleration, ubuntu uses CPU for rendering graphics trough LLVMpipe. It makes running ubuntu in virualbox really slow. To check if your Ubuntu 12.10 guest is using 3D acceleration /usr/lib/nux/unity_support_test -p You should see something like this Not software rendered: no…

  • How to install mod_rewrite on Ubuntu

    mod_rewrite will not be isntalled by default when you install apache web server and php on Ubuntu. To use mod_rewrite on ubuntu you can use the the following command in the terminal # a2enmod rewrite Restart apache2 server # /etc/init.d/apache2 restart you can use the following sample .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}…

  • How to update and upgrade with fastest mirror from the command line

    If you want to update and upgrade your sources.list file with the fastest servers from the command line in a fresh Ubuntu Server install, it’s quite easy with the GUI, but it doesn’t seem to be a simple way to do it from from the command line. You can us deb mirror to have the best mirror picked for you…

  • How to install nginx by compiling source

    Nginx is an open source, fast, light weight and highly customable web server that is similar to Apache. Unfortunately configuring and setting him up is not that easy compared to Apache. nginx is both web server and reverse proxy server. Modules can not be loaded later via a config file like Apache modules, they must be compiled into the Nginx binary.…

Back to top button