0
Python with MySQL Connectivity
Python with MySQL Connectivity

Copy the following code and save it as pythondb.pyimport MySQLdbdb=MySQLdb.connect("localhost","root","password","dbname")cursor=db.cursor()print "1.Insert values in table \n 2.Update values in Table \n 3.Show All \n 4.Delete By Roll.No"def inserts()… Read more »

Read more »
06Nov2013

0
Network Interface using ifconfig
Network Interface using ifconfig

1. View Network Settings of an Ethernet Adapter# ifconfig eth02. Display Details of All interfaces Including Disabled Interfaces# ifconfig -a3. Disable an Interface# ifconfig eth0 down4. Enable an Interface# ifconfig eth0 up5. Assign ip-address to an… Read more »

Read more »
06Nov2013

0
GUI Programming with Python
GUI Programming with Python

 Install Python and python tk bysudo apt-get install python python-tkTo Run Pythonpython filename.pye.g python tkhello.py1. Simple Hello World programimport Tkinter top=Tkinter.Tk() label=Tkinter.Label(top,text="hello world") label.pack() Tkinter.mai… Read more »

Read more »
06Nov2013

0
PHP with MySQL Connectivity
PHP with MySQL Connectivity

To run PHP you must be install LAMP server in your computer. Install LAMP server ==> LAMP INSTALLATION Create the following 4 files. register_form.htmlRegistration formRegistration  formName:password:Address: insert.phpmysql_connect("localhost","root… Read more »

Read more »
06Nov2013

0
GUI Programming using PERL-TK
GUI Programming using PERL-TK

Perl - Practical Extraction and Report LanguagePerl is an interpreted scripting language.Perl is optimised for scanning arbitrary text files and system administration.It has built-in extended regular expression matching and replacement, a data-flow… Read more »

Read more »
06Nov2013

0
Perl with MySQL Database Connectivity
Perl with MySQL Database Connectivity

Perl - Practical Extraction and Report LanguagePerl is an interpreted scripting language.Perl is optimised for scanning arbitrary text files and system administration. It has built-in extended regular expression matching and replacement, a data-flo… Read more »

Read more »
06Nov2013

0
Simple Perl Programs
Simple Perl Programs

Perl - Practical Extraction and Report LanguagePerl is an interpreted scripting language.Perl is optimised for scanning arbitrary text files and system administration.It has built-in extended regular expression matching and replacement, a data-flow m… Read more »

Read more »
06Nov2013

0
Working on Version Control System
Working on Version Control System

Mercurial is an SCM( Source Control Management ) system designed for software developers to efficient handling of very large distributed packages. It keeps all the history of changes and modifications of an project. It is developed in Python. It is e… Read more »

Read more »
06Nov2013

0
Developing GUI programs using the Qt toolkit on Ubutnu based distros
Developing GUI programs using the Qt toolkit on Ubutnu based distros

Earlier days, in Linux  machines developers used a single terminal ( command prompt ) to finish the tasks by simply entering the commands. But remembering all the commands leads complexity on linux for new people. So, developers decide to implemen… Read more »

Read more »
05Nov2013

0
Comman Unix Printing System Setup on Ubuntu / Linux Mint / Zorin OS / OS4 OpenLinux / Lubuntu / elementary OS / Bodhi Linux / Kubuntu / Ubuntu GNOME / Xubuntu  / Pear Linux / Pinguy OS / Edubuntu
Comman Unix Printing System Setup on Ubuntu / Linux Mint / Zorin OS / OS4 OpenLinux / Lubuntu / elementary OS / Bodhi Linux / Kubuntu / Ubuntu GNOME / Xubuntu / Pear Linux / Pinguy OS / Edubuntu

CUPS is a Comman Unix Printing System. From the name we can easily captured this is a Printing System. Yes but it manages the multiple printers simultaneously with the based on multi threaded process.The latest version CUPS 1.6 is released. It has lo… Read more »

Read more »
03Nov2013

0
File Sharing using Samba on Ubuntu / Fedora / Linux Mint / Zorin OS / OS4 OpenLinux / Lubuntu / elementary OS / Bodhi Linux / Kubuntu / Ubuntu GNOME / Xubuntu  / Pear Linux / Pinguy OS / Edubuntu
File Sharing using Samba on Ubuntu / Fedora / Linux Mint / Zorin OS / OS4 OpenLinux / Lubuntu / elementary OS / Bodhi Linux / Kubuntu / Ubuntu GNOME / Xubuntu / Pear Linux / Pinguy OS / Edubuntu

In this post we will see about sharing files between two computers using a tool called samba. Samba is a free software, which provides fast file sharing and print services for all clients using the SMB/CIFS protocol. It supports multiple platforms s… Read more »

Read more »
03Nov2013

0
Filesystem in Userspace ( FUSE ) Tutorial
Filesystem in Userspace ( FUSE ) Tutorial

FUSE is an mechanism which allows to create own file systems to non-privileged users without editing the kernel code. Initially it was developed to support for AVFS ( A Virtual File System ). After that it will be taken as separate project. It runs … Read more »

Read more »
03Nov2013
 
 
Top