Pages

Tuesday, April 28, 2009

Parted Magic - Linux Partition Manager

Parted Magic-Linux Partition Manager

Parted Magiclinux partition type has a different file system with Windows Operating System. if the Windows OS using the FAT, FAT32 and NTFS then Linux OS use raiser, ext2, ext3 etc.

Parted MagicIf you intend to install Linux on your computer and intend to prepare the partition for installation, then you can use the Parted Magic distributions, ie a Linux OS Distro specifically created as Partition Manager. and this Great distro running as Live CD, you only need to enter a CD into the optical drive and then BOOT CD and you can use this Operating System to make any kind of partition in your hard drive.

Parted Magic distributions available for free, the ability to create a partition can be very reliable.




Bookmark and Share

Monday, April 27, 2009

LINUX BASIC COMMAND

A summary of useful Linux commands

A summary of useful Linux commands
Starting & Stopping

shutdown -h now Shutdown the system now and do not reboot
halt Stop all processes - same as above
shutdown -r 5 Shutdown the system in 5 minutes and reboot
shutdown -r now Shutdown the system now and reboot
reboot Stop all processes and then reboot - same as above
startx Start the X system

Accessing & mounting file systems

mount -t iso9660 /dev/cdrom/mnt/cdrom Mount the device cdrom and call it cdrom under the /mnt directory 
mount -t msdos /dev/hdd/mnt/ddrive Mount hard disk “d” as a msdos file system and call it ddrive under the /mnt directory
mount -t vfat /dev/hda1/mnt/cdrive Mount hard disk “a” as a VFAT file system and call it drive under the /mnt directory
umount /mnt/cdrom Unmount the cdrom 

Finding files and text within files

find / -name fname Starting with the root directory, look for the file called fname
find / -name ”*fname*” Starting with the root directory, look for the file containing the string fname
locate missingfilename Find a file called missingfilename
using the locate command - this
assumes you have already used the command updatedb (see next)
updatedb Create or update the database of files on all file systems attached to the linux root directory which missingfilename Show the subdirectory containing the executable file called missingfilename
grep textstringtofind/dir Starting with the directory called dir, look for and list all files containing textstringtofind 

The X Window System

xvidtune Run the X graphics tuning utility
XF86Setup Run the X configuration menu with automatic probing of graphics cards
Xconfigurator Run another X configuration menu with automatic probing of graphics cards
xf86config Run a text based X configuration menu 

Moving, copying, deleting & viewing files

ls -l List files in current directory using long format
ls -F List files in current directory and indicate the file type
ls -laC List all files in current directory in long format and display in columns
rm name Remove a file or directory called name
rm -rf name Kill off an entire directory and all it’s includes files and subdirectories
cp filename/home/dirname Copy the file called filename to the /home/dirname directory 
mv filename/home/dirname Move the file called filename to the /home/dirname directory
cat filetoview Display the file called filetoview 
man -k keyword Display man pages containing keyword 
more filetoview Display the file called filetoview one page at a time, proceed to next page using the spacebar head filetoview Display the first 10 lines of the file called filetoview
head -20 filetoview Display the first 20 lines of the file called filetoview
tail filetoview Display the last 10 lines of the file called filetoview
tail -20 filetoview Display the last 20 lines of the file called filetoview

Installing software for Linux

rpm -ihv name.rpm Install the rpm package called name rpm -Uhv name.
rpm Upgrade the rpm package called name
rpm -e package Delete the rpm package called package
rpm -l package List the files in the package called package
rpm -ql package List the files and state the installed version of the package called package
rpm -i --force package Reinstall the rpm package called name having deleted parts of it (not deleting using rpm -e)
tar -zxvf archive.tar.gz or tar -zxvf archive.tgz  Decompress the files contained in  the zipped and tarred archive called  archive
./configure Execute the script preparing the installed files for compiling  

User Administration

adduser accountname Create a new user call accountname
passwd accountname Give accountname a new password
su Log in as superuser from current login
exit Stop being superuser and revert to normal user
Little known tips and tricks
ifconfig List ip addresses for all devices on the machine
apropos subject List manual pages for subject
usermount Executes graphical application for mounting and unmounting file
systems
/sbin/e2fsck hda5 Execute the filesystem check utility on partition hda5
fdformat /dev/fd0H1440 Format the floppy disk in device fd0
tar -cMf /dev/fd0 Backup the contents of the current directory and subdirectories to multiple floppy disks
tail -f /var/log/messages Display the last 10 lines of the system log.
cat /var/log/dmesg Display the file containing the boot time messages - useful for locating problems. Alternatively, use the dmesg command.
* wildcard - represents everything. eg. cp from/* to will copy all files in the from directory to the to directory
? Single character wildcard. eg. cp config.? /configs will copy all files beginning with the name config. In the current directory to the directory named configs.
[xyz] Choice of character wildcards. eg. ls [xyz]* will list all files in the current directory starting with the letter x, y, or z.
linux single At the lilo prompt, start in single user mode. This is useful if you have forgotten your password. Boot in single user mode, then run the passwd command.
ps List current processes
kill 123 Kill a specific process eg. kill 123

Configuration files and what they do

/etc/profile System wide environment variables for all users.
/etc/fstab List of devices and their associated mount points. Edit this file to add cdroms, DOS partitions and floppy drives at startup.
/etc/motd Message of the day broadcast to all users at login.
etc/rc.d/rc.local Bash script that is executed at the end of login process. Similar to autoexec.bat in DOS.
/etc/HOSTNAME Conatins full hostname including domain.
/etc/cron.* There are 4 directories that automatically execute all scripts within the directory at intervals of hour, day, week or month.
/etc/hosts A list of all know host names and IP addresses on the machine.
/etc/httpd/conf Paramters for the Apache web server
/etc/inittab Specifies the run level that the machine should boot into.
/etc/resolv.conf Defines IP addresses of DNS servers.
/etc/smb.conf Config file for the SAMBA server. Allows file and print sharing with Microsoft clients.
/etc/X11/XF86Config Config file for X-Windows.
~/.xinitrc Defines the windows manager loaded by
X. ~ refers to user’s home directory.

File permissions

If the command ls -l is given, a long list of file names is displayed. The first column in this list details the permissions applying to the file. If a permission is missing for a owner,
group of other, it is represented by - eg. drwxr-x—x 
Read = 4
Write = 2
Execute = 1
File permissions are altered by giving the chmod command and the appropriate
octal code for each user type. Eg chmod 7 6 4 filename will make the file called filename R+W+X for the owner, R+W for the group and R for others. chmod 7 5 5 Full permission for the owner, read and execute access for the group and others. chmod +x filename Make the file called filename executable to all users.
X Shortcuts - (mainly for Redhat) 
Control|Alt + or - Increase or decrease the screen resolution. eg. from 640x480 to 800x600
Alt | escape Display list of active windows
Shift|Control F8 Resize the selected window 
Right click on desktop background Display menu
Shift|Control Altr Refresh the screen
Shift|Control Altx Start an xterm session 

Printing

/etc/rc.d/init.d/lpd start Start the print daemon
/etc/rc.d/init.d/lpd stop Stop the print daemon
/etc/rc.d/init.d/lpd status Display status of the print daemon
lpq Display jobs in print queue
lprm Remove jobs from queue
lpr Print a file
lpc Printer control tool
man subject | lpr Print the manual page called subject as plain text
man -t subject | lpr Print the manual page called subject as Postscript output
printtool Start X printer setup interface
~/.Xdefaults Define configuration for some Xapplications.
~ refers to user’s home




Bookmark and Share

Ubuntu Basic Command Reference

Ubuntu Basic Command Reference

Ubuntu Basic Command Reference
Privileges
sudo command – run command as root
sudo -s – open a root shell
sudo -s -u user – open a shell as user
sudo -k – forget sudo passwords
gksudo command – visual sudo dialog (GNOME)
kdesudo command – visual sudo dialog (KDE)
sudo visudo – edit /etc/sudoers
gksudo nautilus – root file manager (GNOME)
kdesudo konqueror – root file manager (KDE)
passwd – change your password

Display
sudo /etc/init.d/gdm restart – restart X and return to login (GNOME)
sudo /etc/init.d/kdm restart – restart X and return to login (KDE)
(file) /etc/X11/xorg.conf – display configuration
sudo dexconf – reset xorg.conf configuration
Ctrl+Alt+Bksp – restart X display if frozen
Ctrl+Alt+FN – switch to tty N
Ctrl+Alt+F7 – switch back to X display

System Services
start service – start job service (Upstart)
stop service – stop job service (Upstart)
status service – check if service is running (Upstart)
/etc/init.d/service start – start service (SysV)
/etc/init.d/service stop – stop service (SysV)
/etc/init.d/service status – check service (SysV)
/etc/init.d/service restart – restart service (SysV)
runlevel – get current runlevel

Package Management
apt-get update – refresh available updates
apt-get upgrade – upgrade all packages
apt-get dist-upgrade – upgrade with package replacements; upgrade Ubuntu version
apt-get install pkg – install pkg
apt-get purge pkg – uninstall pkg
apt-get autoremove – remove obsolete packages
apt-get -f install – try to fix broken packages
dpkg --configure -a – try to fix broken packages
dpkg -i pkg.deb – install file pkg.deb 
(file) /etc/apt/sources.list – APT repository list

Network
ifconfig – show network information
iwconfig – show wireless information
sudo iwlist scan – scan for wireless networks
sudo /etc/init.d/networking restart – reset network for manual configurations
(file) /etc/network/interfaces – manual configuration
ifup interface – bring interface online
ifdown interface – disable interface

Special Packages
ubuntu-desktop – standard Ubuntu environment
kubuntu-desktop – KDE desktop
xubuntu-desktop – XFCE desktop
ubuntu-minimal – core Ubuntu utilities
ubuntu-standard – standard Ubuntu utilities
ubuntu-restricted-extras – non-free, but useful
kubuntu-restricted-extras – KDE of the above
xubuntu-restricted-extras – XFCE of the above
build-essential – packages used to compile programs
linux-image-generic – latest generic kernel image
linux-headers-generic – latest build headers

Firewall
ufw enable – turn on the firewall
ufw disable – turn off the firewall
ufw default allow – allow all connections by default
ufw default deny – drop all connections by default
ufw status – current status and rules
ufw allow port – allow traffic on port
ufw deny port – block port
ufw deny from ip – block ip adress

Application Names
nautilus – file manager (GNOME)
dolphin – file manager (KDE)
konqueror – web browser (KDE)
kate – text editor (KDE)
gedit – text editor (GNOME)

System
Recovery - Type the phrase “REISUB” while holding down Alt and SysRq (PrintScrn) with about 1 second between each letter. Your system will reboot.
lsb_release -a – get Ubuntu version
uname -r – get kernel version
uname -a – get all kernel information


Ubuntu is a trademark of Canonical Ltd. Licensed under CC-BY-SA 3.0. 
Free to redistribute; see creativecommons.org for details.



Bookmark and Share

Thursday, April 23, 2009

What Is PC/OS Desktop Linux Distribution

PC/OS Desktop 

PC/OS Desktop
Dear reader, are you looking for a lightweight Linux Ditribution to use on you (Old) computer? There are so many Lightweight Linux distributions out there. One of them which are my favourite is PC/OS, this Distro derivative from Ubuntu Linux Distro.

Almost all of standar big Distribution did not include Multimedia codec on their Package, tis issue make user that has a little problem with installing/finding multimedia codec feel a little disappointed about it. 

It will not be happened if we use a Linux Distribution that has multimedia codec included, like PC/OS.

PC/OS Desktop
PC/OS can play Multimedia file such as MP3’s File and DVD Movie’s File, and also has Flash Player and Sun Java 6 JRE included.

We can find almost all Ubuntu’s standard applications in this Distribution, like Abiword 2.4.6, Gnumeric 1.8.2, Flock 1.2.4 dan Audacious 1.5.0.

In Spite of using Xfce Windows Manager, PC/OS still have abeautifull Look, realy reliable, fast and Lightweight. This Operating System is really suitable for Old computers who need modern features with its simplicity and light in weight.

The Multimedia Features are really rockin :) the good news is PC/OS allready include Wine Application, an application to run Windows OS Application on Linux OS, So if you stilll get your hand on Wndows Apps, you can bring it On PC/OS (Not All Application can be run)

You can get more information and download the Distro on their website @ http://www.pc-os.org
  • Creator: PC/OS
  • Kernel: 2.6.24-19
  • Office: Abiword 2.4.6, Gnumeric 1.8.2
  • Desktop: Xfce 4.4.2
  • Graphics: GIMPS 2.4.5, Ristretto 0.0.18
  • Multimedia: Audacious 1.5.0, GTKpod 0.99.12, Mplayer 1.0
  • Internet: Flock 1.2.4, Thunderbird 2.0, Transmission 1.06

Minimum Specification:


Bookmark and Share

CentOS 5.2

CentOS 5.2

CentOS 5.2
CentOS known as one of the distribution made by the community for the enterprise Class, and the source code are made based from RedHatEnterprise Linux (RHEL). 

CentOS 5.2 is based on the source code RedHatEnterprise Linux 5.2.0. Therefore, the application package is available in the CentOS more stabil then the latest version.   No wonder if the application version on this distro seems less up-to-date. 

In this latest version, CentOS has been improving a number of bugs found in versionold. application servers such as MySQL 5.0, Squid 2.6, OpenLDAP 2.3.27, Post fix 2.3.3, and Samba 3.0, have also been included in this distribution. 

We can Upgrade or Add the other Application wtih Yum Application.

Creator CentOS 
  • SITE: www.centos.org 
  • KERNEL: Kernel 2.6.18 OFFICE OpenOffice.org 2.3.0, Planner 0:14 
  • DESKTOP:  Gnome 2.16.0  
  • Graphics: GIMP 2.2.13, gThumb 2.7.8 
  • SERVER: Postfix 2.3.3, MySQL 5.0, Squid 2.6, OpenLDAP 2.3.27 
  • INTERNET: Firefox 3.0, Evolution 2.12.3, Thunderbird 2.0 

Hardware Requirements :
  • Processor: Pentium IV Class 
  • Harddisk: 10 GB 
  • Memory: 512 MB


Wednesday, April 22, 2009

MANDRIVA 2009 On My Review

MANDRIVA 2009 - A Beautifull Linux Operating System

MANDRIVA 2009
Like previous versions, Mandriva always show a beautiful display on its desktop. you'll notice it when you see the Mandriva 2009 Desktop display. 

Unlike the other distro that uses KDE as the default desktop, Mandriva 2009 has been a way to modify how the menu bar and desktop KDE 4.1, so it looks more professional and elegant. 

A number of the latest desktop application package is also included in this distribution, among others, OpenOffi 
ce.org 3.0, Firefox 3.0, GIMP 2.4.7, 2.24.1 Totem, Amarok 2.0, and digiKam 0.10.0. 

New Mandriva 2009 is also evident in the application installer and Mandriva Control Center. If you bored with the KDE desktop, you can also install GNOME desktop 2.24.1. 

Although the application does not include non-free, but by default Mandriva 2009 have included the audio codec to play the MP3 file. With this, you can play the MP3 file collection you have. 

Minimum specification:
Technical data:
  • Creator: Mandriva Linux 
  • SITE -Info & Download: www.mandriva.com  
  • KERNEL: 2.6.27 Graphics GIMP 2.4.7, digiKam 0.10.0 
  • DESKTOP: KDE 4.1.2, GNOME 2.24.1 OFFICE OpenOffice.org 3.0 
  • MULTIMEDIA: Amarok 2.0, Dragon Player 2.0, Totem 2.24.1 
  • INTERNET: Firefox 3.0.3, Ekiga 2.0.12, 4.1.2 Kopete



Monday, April 20, 2009

Frankie YO - Linux Adventure Games

Frankie YO! - Linux Adventure Games

Frankie YO! - Linux Adventure Games Blender, as the creator of the famous picture 3d application with opensource license. after creating 3D Movies Big Bug Bunny, the blender institute released 3D games, created using the Blender application with the title Yo Frankie!.

It is a quizzical look and the beautiful graphics, this game take the character and appearance which is very similar to the Big Bug Bunny movie.

Frankie YO! - Linux Adventure Games In this game, players will have a role as Frank, the Sugar Glider which is the antagonis figure in the Big Bug Bunny movie.

in the movie, Frank and two friends is a Butterfly murderer and a big enemies of Big Bunny.

More Info And Download @ www.yofrankie.org

  • license: creative commons
  • difficulty level: medium
  • Dependencies: Blender> = 2.46
  • Processor: Pentium IV
  • Hard Drive: 1 Gb
  • Memory: 1 GB

OrangeHRM 2.4.1 - HRM Software Review

OrangeHRM 2.4.1 - Free / open source Human Resource Management Software

OrangeHRM 2.4.1Currently, Human Resource Management (HRM) application / software has a proprietary and expensive license.

OrangeHRM 2.4.1 comes as an application that has a Free / Open Source license HRM Software. This application is PHP based and has same features with proprietary applications.

OrangeHRM is based on a modular architecture so that the stack has consisted of the admin module, Module PIM, ESS modules, Module leave, working time module, reports module, the module bug tracker and recruitment modules.

In this application, there are features to make the structure of the organization with full facilities management employee, a facility to open a job on the Internet and many more.

To install this application you only need to prepare the package of Apache, MySQL and PHP installed your computer. You can use XAMPP or Wamp server Application.

Info and download @ www.orangehrm.com
  • license: GPL
  • dependency Apache> = 2.0, PHP> = 5.2, MySQL 5.0
  • Processor: Pentium III
  • Hard Drive: 50 Mb
  • Memory: 384 Mb


UBUNTU STUDIO 8.10 - LInux For Multi Media

UBUNTU STUDIO 8.10 - LInux For Multi Media

Although licensed Free, Linux operating system has a wide range of powerful audio / video applications and with so many features.

These varieties of applications can even be found easily on Ubuntu Studio 8.10 Operating System which is a derivative of Ubuntu 8.10 and have various multimedia applications.

This distribution is suitable for professional workers to do audio, video and graphics Job.

for editing audio file, Ubuntu 8.10 already includes Ardour 2.5, Audacity 1.3.5, Beast 0.7.1, Hydrogen Muse 0.9.3 and MuSE 0.8.1

To do editing the Video file, Kino 1.3.0 and open Movie Editor 0.
0.20080102 is available, and there’s so many more other applications.

If the application are still insufficient, you can add it using the Ubuntu package repositories 8:10

Info and Download @ www.ubuntustudio.org
  • kernel: 2.6.27.7
  • Internet: FireFox 3.0.3- Pidgin 2.5.2
  • Desktop: gnome 2:24
  • Video Production: Kino 1.3.0
  • Audio Production: Ardour 2.5, Audacity 1.3.5, Beast 0.7.1
  • graphics: Agave 0.4.5-Blender 2.46-Inkscape 0:46

Minimum specification:
  • Processor: Pentium IV
  • Harddrive: 20 Gb
  • Memory: 384 Mb

Saturday, April 18, 2009

Slackware 12.2

Slackware 12.2
Desktop / Server Linux Operating System Review


Slackware 12.2Slackware is one of the oldest Linux distributions that are still actively developed. In the latest slackware version, kernel 2.6.27.7 has been included as the default kernel.

Slackware 12.2 using the KDE 3.5.10 and xfce 4.4.3 desktop manager, which included with so many application.

Unlike other Linux operating system, slackware does not use the GUI in the installation process but still maintain the text-based system installation (ncurses).

Slackware 12.2To create a disk partition, slackware 12.2 still using Command line interface (CLI) Mode, we can choose to use fdisk or cfdisk.

For modern Linux users will feel a little difficult to use this partition manager especially if they get used to Parted Magic .

But overall, the Slackware Linux Operating System distributions capable of running fast and stable in the old engine with the minimum specifications.

Technical data:
  • Creator: Slackware Linux, inc
  • Website: www.slackware.com
  • Kernel: 2.6.27.7
  • Office: Kofice 1.6.3 - Korganizer 3.5.9
  • Desktop: KDE 3.5.10 - Xfce 4.4.3
  • Graphic: gimp 2.4.7
  • Multimedia: xine 0.99.5 - Amarok 1.4.10 - KaudioCreator 1:13
  • Internet: Firefox 3.0.4 - kmail 1.9.10 - Pidgin 2.5.2

Minimum Specification:
  • Processor: Pentium II Class
  • Harddisk: 15 Gb
  • Memory: 256 Mb


Wednesday, April 15, 2009

OpenSUSE 11.1 - Linux Operating System

OpenSUSE 11.1 - Linux Operating System

OpenSUSE 11.1 - Linux Operating SystemThree months after the release of openSUSE 11.0 on 18 December 2008 the openSUSE team developers released the latest version of openSUSE, it is openSUSE 11.1.

OpenSUSE 11.1 - Linux Operating SystemIn this latest version, the developer team bring the system installation with the menu view that more beautiful and elegant than the previous version, and along with improvements to the YAST module.

OpenSUSE 11.1 - Linux Operating SystemFor the windows manager, openSUSE 11.1 includes the GNOME 2.24.1 or KDE 4.1.3 as an option.

Several new packages are added in this version such as, openoffice.org 3.0, Banshee 1.4.1, Firefox 3.0.3, Evolution 2.24.1 and pidgin 2.5.1.

A number of restricted package can also be added through the package repository, or add-on non-OSS openSUSE 11.1.

On the download page, openSUSE 11.1 is available in a DVD Instalation version, Live CD Gnome / KDE and the network install.

Download and More info @ www.opensuse.org


Technical data
  1. Kernel 2.6.27.7
  2. Office: openoffice.org 3.0, Evince 2.24.1
  3. Desktop: Gnome 2.24.1, KDE 4.1.3
  4. Graphic: Gimp 2.6.2-2
  5. Multimedia: 1.4.1 Banshee, Sound Juicer 2.24.0
  6. Internet: FireFox 3.0.3, Evolution 2.24.1, Pidgin 2.5.1

Monday, April 13, 2009

FLIGHTGEAR 1.9.1-Linux Games

FLIGHTGEAR 1.9.1 
Linux Flight Simulation Games 

Do You like the aircraft and have the desire to become a pilot? You can try this application, aN aIRCRAFT simulation game for lINUX operating system. FLIGHTGEAR 1.9.1. is an opensource Application.  

The Situations present in this game are very similar to the real atmosphere in a space fighter pilot cockpit. Many of the keys that are available you, and you must use the right key in accordance with the required Objective in this game. 

There are three options for dynamic model that you can enjoy, you can even create your own model. JSBSim, YASim and UIUC. JSBMsim is simple, only simulate normal aircraft movements. YASim already integrated with the shared system approach, many effects that appear in this model. Finally, the UIUC model written by the original NASA. In this model the configuration is made more varied, you will enjoy the flight system indeed. 

This game was originally created for the purpose of research, academic development. But eventually made into a game. 

FLIGHTGEAR 1.9.1 is a flight simulation that you consider to play.

More info @ www.flightgear.org 

License GPL / Free 
Dependency X Window 

Minimum spesification 
Pentium IV Processor 
Memory 512 Mb


LINUX FIRE WALL - GUFW 0.20.7

LINUX GUFW firewall-0.20.7 

Security in Internet connection or Local Area network, we need the system that can maintain the security of our system from virus, malware and others attacks. 

This can be done with by installing Fire wall. In Linux Operating System distributions, especially Ubuntu, the process of creating a firewall using iptables sintax can be difficult for some users. 

Using Gufw can be the Solutions for this, Gufw is a graphical application based firewall that is easy to use. For back-end applications, application package Gufw use ufw in the Netfilter firewall management . 

To start a fire wall, you check it on the firewall option enabled in the start page gufw, then you only need to allow / deny various incoming connections in the network. 

On the page RULE, you can simply choose which port and protocol are allowed (allow traffic) or prohibited (deny traffic) on the host computer.

Rule can also be used to Limit IP Port (Protecting Against brute force login attacks). In addition you can also activate the option ufw enable log to record all the firewall that is in progress. 

Gufw is an application that is right for you who want to strengthen the security of your computer system by using a firewall. 

GPL License 
Dependencies ufw> = 0.23.2, Python-glade2> = 2.13 

Minimum specifications:
Processor Pentium IV
Hard Drive 10 Mb 
Memory 256 Mb


Linux spam filter-the protection

Linux spam filter-the protection 

Linux spam filter-the protection
Do You feel angry when virus and spam attacks your email/email server? nothing make people feel chapfallen other than to receive spam and viruses. If you are an currently an email administrator, then this can be the beginning of a bad career for you if you let it. 

Spam and virus attacks that can lead to ongoing performance and decreased even hang. Spam is one of the main causes of utmost network resource consumption, resource CPU, hard drive space, and others. 

One practical solution to avoid problems is to upgrade the hardware or use a separate e-mail servers, spam filters and virus filters on a different machine. 

One of the linux distro that can be used as reference to build a Linux server with Spam filter, such as technical scheme above is Ubuntu Linux distributions. This is because the Ubuntu Linux distributions LTS Server edition has a package Mail Transfer Agent (MTA) with Dovecot application as POP 3. While to filter spam and virus filters can use Untangle Gateway Applications. 

Required two computers, which is installed on the computer first mail server with the Ubuntu LTS server edition (or can use another Linux distro), and on the second computer is installed Untangle Application. 

Linux spam filter-the protection
Each computer has two network cards, one port with the settings given the public IP Address and another port given IP Local Address and connect between computers in parallel scheme, Technicaly, port 1 on a computer as the entrance of the Internet, and Port 2 connect to Port 3 on the computer B and Port 4 distribute results filter through to the destination on LAN Network. 

So with Applications Spam Blocker that act as filters for spam and virus filters as Virus Blocker with Untangel Applications Reports for the reporting system is said to be enough as a spam filter system using the Linux OS.


LinuxWeb Hosting - Linux Ecommerce

LinuxWeb Hosting - Linux Ecommerce 
Opinion

LinuxWeb Hosting - Linux Ecommerce
in a world of information technology is very advanced, the trade does not occur again in the real world. at this time the business world has been present in the Internet world with all the lack and advantages. 

for some people who feel less have time to get the goods, at this time he can find and order the item of interest via the Internet without having to leave the home or office. This is called the E-commerce. 

LinuxWeb Hosting - Linux Ecommerce
Support for eCommerce technology has been so rapid and powerful. one of the trusted operating system with it's powerful in dealing with the process of eCommerce on the Internet is the Linux operating system. 

There are many types of options used for the Linux OS, but the most famous in this case is Redhat Linux distributions. Server using the Linux OS and provides web hosting services can provide advantages in terms of security, stability and Reliability. and of course the cheap price. 

In addition, Linux offers many options for compatibility with some type of database such as My-SQL and MS-SQL. Support programming language that also has a especially as opensource license, like: PHP, Perl, Ruby, rail, Python and others. 

Linux in the future will be more use by people, as the operating system for servers and as a provider of web hosting. 

Linux Web Hosting offers many advantages, especially if used for web hosting eCommerce, where security is the main option.



Sunday, April 12, 2009

Linux Dedicated Server - INTRODUCTION

Linux Dedicated Server - INTRODUCTION
Linux as a software operating system Server

Linux Dedicated Server - INTRODUCTIONAt the time this Linux has become a very reliable Operating System in the world of servers, the superb in terms of safety, function and reliability make a Linux Operating System is used by many people today.

The Linux’s stability even used for a long nonstop Powered on when used as a server operating system and features to make a backup without having to turn off or restart the system is the other advantage of the Linux.

Another thing that a lot of consideration is that many of the Linux Operating System is an open source software which is available free to be so, the capital to build a server is cheaper compare to use any Proprietary Operating System.

The weaknesses of using Linux for Server Operating System is, Linux can not run Windows applications, so be pitied, if we bother to build a website using the code and applications that are Windows-based application, would not be able to run on the Linux Server.

But overall Linux offers many advantages; Make sure if you will use the services of the server that use Linux, you get features such as:
  • Firewalls
  • Security
  • Virus Protection
  • Cpanel
  • Mysql Database
  • Additional Ftp Creation
  • Sub Domain Services
  • Add On Domains
  • On Line Technical Support

So you will really feel the reliability of a Linux Server.


Friday, April 10, 2009

Most Popular Linux Distribution

Most Popular Linux DistributionToday Linux has become a Reputable and dependable Operating System. More and more people begin to use Linux for their Computing life.

There are so many Variants on Linux Distribution; every new Distribution comes derivate from old ones.

Now, we can easily get one of them and use them with all ease. For us who has a little knowledge about Linux Command, we don’t have to worry anymore, because today Linux come with a great and beautiful GUI. Even on installation process, it becomes so easy.

You can get a great information about Linux at www.distrowatch.com and there you can choose from hundreds of Linux distribution.

Most Popular Linux DistributionHere is the most Popular Linux Distribution:
  1. Ubuntu
  2. openSUSE
  3. Mint
  4. Fedora
  5. Debian

These are ranked by most used by people, so you can have a great support from other users.

LinkWithin

Related Posts Plugin for WordPress, Blogger...

Breaking News

Followers