avatar

How to Install Samba Server on Ubuntu

April 7, 2013 in Services

Installing Samba on Ubuntu

What is samba?

Samba is an easy way to share files over Linux And Windows environment. Samba is presented by samba.org and is an Open Source/Free Software suite that provides seamless file and print services to SMB/CIFS clients.

Installing Samba.

lets update first the repositories.

open a terminal and type the following :

sudo apt-get update

now install samba

sudo apt-get install samba

now lets edit the configuration file of samba, but before that lets backup the initial configuration file.

cd /etc/samba/

sudo mv smb.conf backsmb.conf

Setup public folder:

First we will create the configuration for a share folder accessible from everyone without any user need it

sudo nano smb.conf

for that add the following to this file:

#
[global]
workgroup = Workgroup
server string = My Samba Share %v
security = user
map to guest = bad user
dns proxy = no
#
[ShareFolder]
comment = This is a folder accessible from everyone
path = /sharefolder
browsable = yes
guest ok = yes
read only = no
create mask = 0755

next we need to create the directory that will host the share folder and change the user permissions

avatar

How to install Drupal 7 on ubuntu

June 26, 2012 in CMS

How to install Drupal 7 on ubuntu Part 1

This is a full article on how to install Drupal on Ubuntu, that means you can use this guide even if you have a clean installation of Ubuntu, and I will try to keep it as simple as I can.

What you will need in order to install Drupal.

First of all you will need a LAMP Server(more information can be found here).

1. You have to install a Linux system(you can choose whatever you want. A guide on how to install Ubuntu can be found here).It doesn’t really matter if you choose a desktop or server edition but if you are planning to publish your Drupal website I strongly recommend to use a server edition of Ubuntu for example.

2. You will need Apache (more information can be found here)

3. You will need MySQL (more information can be found here)

4. You will need PhP (more information can be found here)

5. And last but not least you will need to download Drupal from official site.

Let’s go to the next Part and install Lamp

avatar

host a forum

March 26, 2012 in forum

How to create and host your own forum on Ubuntu.

Requirements

A web server With PHP Support. (In this tutorial I use Apache2)

SQL database. (In this tutorial i use Mysql and PhpMyadmin to configure Mysql)

If you already have Apache Php Mysql and Phpmyadmin installed then you are ready to go if not please follow these tutorials first (Lamp on ubuntu and Phpmyadmin)

Installation:

First we will need an empty database where our forum will store contents.

Read the rest of this entry →

avatar

Joomla 2.5.3 on Ubuntu

March 17, 2012 in CMS

How to install Joomla 2.5.3 on Ubuntu 11.10 Part 1

This is a full article on how to install Joomla on Ubuntu, that means that you can use this guide even if you have a clean installation of Ubuntu, and i will try to keep it as simply as i can.

What you will need in order to install Joomla

First of all you will need a LAMP Server(more information can be found here).

Lets set up our LAMP Server.

1. You have to install a Linux system(you can choose what ever you want. A guide on how to install Ubuntu can be found here).It doesn’t really matter if you choose a desktop or server edition but if you planning to publish your Joomla website i strongly recommend to use a server edition of Ubuntu for example.

2. You will need Apache (more information can be found here)

3. You will need MySQL (more information can be found here)

4. You will need PhP (more information can be found here)

5. And last but not least you will need to download Joomla from official site.

Lets start by installing Lamp:

avatar

Openshot Video Editor

February 23, 2012 in sound and video

Openshot Video Editor

What is Openshot Video Editor?

 

Openshot is and open source non-linear video editor. You can create or edit videos. Openshot support many popular video formats and can create videos for youtube,metacafe,ipod,xbox and many more other common video formats

Where to get Openshot Video Editor?

You can visit the official site of Openshot (http://www.openshotvideo.com) or you can use the Linux package manager to download and install Openshot.

How to install Openshot Video Editor

Here is a video tutorial on how to install Openshot on Ubuntu 11.04. Its pretty much the same procedure even if you have older or newer version of Ubuntu.

 

avatar

Php

February 22, 2012 in Php

PHP

What is PHP?

PHP is one of the most popular HTML-embedded scripting language. You can use PHP to create dynamically generated pages quickly. PHP is a powerful scripting language that is used in most dynamically sites in our days.

How to install PHP on Ubuntu 11.04

Read the rest of this entry →

avatar

Install PhpMyAdmin in Ubuntu

February 22, 2012 in SQL Tools

Install PhpMyAdmin in Ubuntu / Debian

What is phpMyAdmin?

PhpMyAdmin is an open source tool written in PHP and can be used for the administration of MySQL over WWW. You can execute any sql statement and you can easily manage databases, tables, relations, indexes, permissions, users, etc.

How to install phpMyAdmin

In order to install phpMyAdmin you have to install first MysqlPHP and Apache.

Open your terminal and type the following:

Read the rest of this entry →

avatar

Install MySQL Database server in Ubuntu

February 15, 2012 in MySQL

Install MySQL Database server in Ubuntu / Debian

What is MySQL?

MySQL is most popular open source database. It is a high performance and reliable database and it is easy to use. MySQL runs on almost all known Operating Systems including Ubuntu.

How to install MySQL on Ubuntu 11.04

You can install MySQL Server from the terminal. Just type:

Read the rest of this entry →

avatar

Install Apache web server in Ubuntu

February 15, 2012 in Apache

Install Apache web server in Ubuntu / Debian

What is apache?

Apache is the most popular web server on the internet. It is highly configurable with third party modules, can run under several Operating Systems including Ubuntu and its very secure and stable. That is why more than 50% of websites currently running on the internet have an Apache server behind them.

How to install Apache on Ubuntu 11.04

You can install Apache2 from the Terminal by using:

$> sudo apt-get install apache2

when the installation is finished Apache is up and running and you can test that by point your web browser to http://localhost/

Read the rest of this entry →