Browsing the archives for the Configuring Ubuntu category.


How to set a static IP in Ubuntu Server from the shell.

Configuring Ubuntu, F.A.Q.'s, Fast Track, How To's, LAMP, Open Source, P.C. Linux, Ubuntu, Ubuntu Server

Here is the simple instructions and a video below.

sudo nano /etc/network/interfaces

look for this:

# The primary network interface
auto eth0
iface eth0 inet dhcp

Change it to this or whatever IP configuration you would like to use:

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1

Here is a walk through video:


YouTube

No Comments

Install Gnome on Ubuntu Server

Configuring Ubuntu, F.A.Q.'s, Fast Track, How To's, LAMP, Open Source, P.C. Linux, Tech Industry News, Ubuntu, Ubuntu Server

Here is an easy to use YouTube Video with code and instruction below:


YouTube view

Use the following command to install GUI

sudo apt-get update

sudo apt-get install ubuntu-desktop

If you wan to install a graphical desktop manager without some of the desktop addons like Evolution and OpenOffice, but continue to use the server flavor kernel use the following command

sudo aptitude install --no-install-recommends ubuntu-desktop

If you want to install light weight desktop install xfce using the following command

sudo apt-get install xubuntu-desktop

If you want to install KDE desktop use the following command

sudo apt-get install kubuntu-desktop

No Comments

IPtables for Dummies (a beginners guide to IPtables firewall)

Configuring Ubuntu, F.A.Q.'s, How To's, IDS, LAMP, Open Source, P.C. Linux, Security, Ubuntu, Virtualization

I always have people asking me for a dummies guide to IPtables, and in all reality their isn’t one it takes time, reading, and understanding to use it properly. If IPtables is used properly and effectively it can save you hundreds of dollars in networking equipment and time. Here is a collection of several IPtables how-to’s and links I have collected for people through the years.

No Comments

How to share files and folders in Ubuntu Desktop

Configuring Ubuntu, F.A.Q.'s, How To's, P.C. Linux, Tech Industry News, Ubuntu, Ubuntu Server

This will teach you how to enable file sharing in ubuntu desktop, hopefully.

  1. Sharing files and folders across your network from your Ubuntu PC is every bit as easy as sharing files in Windows (arguably, it’s easier). Start by right-clicking the folder you want to share, and select Share Folder. If the services required to share files/folders aren’t installed, you’ll be prompted to install them.
  2. After clicking Install services they will automatically start to download and install.
  3. Once that has completed you’ll be presented with an options window. From here you can select the type of sharing (SMB or NFS), give the shared folder a name and decide if you want read-only access to the folder. Click OK when you’re done.
  4. If you right-click on your newly shared folder and select Properties and then the Emblems tab, you can give the folder a unique icon so you’ll know it’s shared.
  5. You can further modify the permissions of your shared folder by selecting the Permissions tab after right clicking.

To add a user to use the share:

  1. Now open a terminal in Ubuntu and enter the command:
    sudo smbpasswd -a username

This will add a user/pass for you to use.

YAY! we’re done!

No Comments

Using phpMyAdmin to import and export databases.

Configuring Ubuntu, F.A.Q.'s, How To's, Open Source, P.C. Linux, Ubuntu, Ubuntu Server

Exporting the database.

Step One:

Select your database from the menu on the left.

Selecting your database

Selecting your database

Step Two:

Select the export tab in the tab menu at the top.

Open the export tab

Open the export tab

Step Three:

Select the tables you want to export, if you want to do the whole database just click select all.

Select your tables

Select your tables

Step Four:

Select the “zipped” bullet option towards the bottom. This will allow you to download a copy to your computer.

Zip it up

Zip it up

Importing the database:

Step one:

Select the database you want to import into:

select import database

select import database

Step Two:

Select the import tab.

Import Tab Sir

Import Tab Sir

Step Three:

Browse for your file:

browse my thangs

browse my thangs

Step Four:

Select ok or import depending on your version!

DONE!

No Comments