General Archives

Development and remote installation of Java service for the Android Devices

Development and remote installation of Java service for the Android Devices

Free Online Articles Directory

Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via

Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Programming > Development and remote installation of Java service for the Android Devices

Development and remote installation of Java service for the Android Devices

Edit Article |

Posted: Aug 14, 2009 |Comments: 0
| Views: 576
|

Share

]]>

Ask a question

Ask our experts your Programming related questions here…200 Characters left

Related Questions

Since installing windows 7 I have no sound it is saying no audio output device is installed do you know what I can do to fix this
I could not finished download any android apps & game into my iped apad 7″ ( version 1.6 ). Once clicked install on any program, it shown “start downloading” but never complete. Why…
I have caller id service from my telco… Is there a device that I can hook up to my telephone line that will perform reverse number look up at the same time that the caller id is displayed?
My plastic cover of Samsung gt-s5230 which located on the screen broke and my touch screen now don’t work! Where can I buy a new plastic cover? *Without going it to service* I can install it by myself

Syndicate this Article

Copy to clipboard

Development and remote installation of Java service for the Android Devices

By: Apriorit

About the Author

Apriorit is an Ukrainian software development company.

Apriorit develops its own products as well as provide offshore development and QA services in the areas of advanced system programming, driver development, software for devices.

One of the key values of Apriorit’s specialists is knowledge generation and sharing of experience.

Learn more about Apriorit and its experience at Apriorit Official site

(ArticlesBase SC #1127620)

Article Source: – Development and remote installation of Java service for the Android Devices





Written by:
Igor Darkov, Software Developer of Device Team, Apriorit Inc.

In this article I’ve described:

How to develop simple Java service for the Android Devices; How to communicate with a service from the other processes and a remote PC; How to install and start the service remotely from the PC. 1. Java Service Development for the Android Devices

Services are long running background processes provided by Android. They could be used for background tasks execution. Tasks can be different: background calculations, backup procedures, internet communications, etc. Services can be started on the system requests and they can communicate with other processes using the Android IPC channels technology. The Android system can control the service lifecycle depending on the client requests, memory and CPU usage. Note that the service has lower priority than any process which is visible for the user.

Let’s develop the simple example service. It will show scheduled and requested notifications to user. Service should be managed using the service request, communicated from the simple Android Activity and from the PC.

First we need to install and prepare environment:

Download and install latest Android SDK from the official web site (http://developer.android.com); Download and install Eclipse IDE (http://www.eclipse.org/downloads/); Also we’ll need to install Android Development Tools (ADT) plug-in for Eclipse.

After the environment is prepared we can create Eclipse Android project. It will include sources, resources, generated files and the Android manifest.

1.1 Service class development

First of all we need to implement service class. It should be inherited from the android.app.Service (http://developer.android.com/reference/android/app/Service.html) base class. Each service class must have the corresponding <service> declaration in its package’s manifest. Manifest declaration will be described later. Services, like the other application objects, run in the main thread of their hosting process. If you need to do some intensive work, you should do it in another thread.

In the service class we should implement abstract method onBind. Also we override some other methods:

onCreate(). It is called by the system when the service is created at the first time. Usually this method is used to initialize service resources. In our case the binder, task and timer objects are created. Also notification is send to the user and to the system log: public void onCreate() { super.onCreate(); Log.d(LOG_TAG, “Creating service”); showNotification(“Creating NotifyService”); binder = new NotifyServiceBinder(handler, notificator); task = new NotifyTask(handler, notificator); timer = new Timer(); } onStart(Intent intent, int startId). It is called by the system every time a client explicitly starts the service by calling startService(Intent), providing the arguments it requires and the unique integer token representing the start request. We can launch background threads, schedule tasks and perform other startup operations. public void onStart(Intent intent, int startId) { super.onStart(intent, startId); Log.d(LOG_TAG, “Starting service”); showNotification(“Starting NotifyService”); timer.scheduleAtFixedRate(task, Calendar.getInstance().getTime(), 30000); } onDestroy(). It is called by the system to notify a Service that it is no longer used and is being removed. Here we should perform all operations before service is stopped. In our case we will stop all scheduled timer tasks. public void onDestroy() { super.onDestroy(); Log.d(LOG_TAG, “Stopping service”); showNotification(“Stopping NotifyService”); timer.cancel(); } onBind(Intent intent). It will return the communication channel to the service. IBinder is the special base interface for a remotable object, the core part of a lightweight remote procedure call mechanism. This mechanism is designed for the high performance of in-process and cross-process calls. This interface describes the abstract protocol for interacting with a remotable object. The IBinder implementation will be described below. public IBinder onBind(Intent intent) { Log.d(LOG_TAG, “Binding service”); return binder; }

To send system log output we can use static methods of the android.util.Log class (http://developer.android.com/reference/android/util/Log.html). To browse system logs on PC you can use ADB utility command: adb logcat.

The notification feature is implemented in our service as the special runnable object. It could be used from the other threads and processes. The service class has method showNotification, which can display message to user using the Toast.makeText call. The runnable object also uses it:

public class NotificationRunnable implements Runnable { private String message = null; public void run() { if (null != message) { showNotification(message); } } public void setMessage(String message) { this.message = message; } }

Code will be executed in the service thread. To execute runnable method we can use the special object android.os.Handler. There are two main uses for the Handler: to schedule messages and runnables to be executed as some point in the future; and to place an action to be performed on a different thread than your own. Each Handler instance is associated with a single thread and that thread’s message queue. To show notification we should set message and call post() method of the Handler’s object.

1.2 IPC Service

Each application runs in its own process. Sometimes you need to pass objects between processes and call some service methods. These operations can be performed using IPC. On the Android platform, one process can not normally access the memory of another process. So they have to decompose their objects into primitives that can be understood by the operating system , and “marshall” the object across that boundary for developer.

The AIDL IPC mechanism is used in Android devices. It is interface-based, similar to COM or Corba, but is lighter . It uses a proxy class to pass values between the client and the implementation.

AIDL (Android Interface Definition Language) is an IDL language used to generate code that enables two processes on an Android-powered device to communicate using IPC. If you have the code in one process (for example, in Activity) that needs to call methods of the object in another process (for example, Service), you can use AIDL to generate code to marshall the parameters.

Service interface example showed below supports only one sendNotification call:

interface INotifyService { void sendNotification(String message); }

The IBinder interface for a remotable object is used by clients to perform IPC. Client can communicate with the service by calling Context’s bindService(). The IBinder implementation could be retrieved from the onBind method. The INotifyService interface implementation is based on the android.os.Binder class (http://developer.android.com/reference/android/os/Binder.html):

public class NotifyServiceBinder extends Binder implements INotifyService { private Handler handler = null; private NotificationRunnable notificator = null; public NotifyServiceBinder(Handler handler, NotificationRunnable notificator) { this.handler = handler; this.notificator = notificator; } public void sendNotification(String message) { if (null != notificator) { notificator.setMessage(message); handler.post(notificator); } } public IBinder asBinder() { return this; } }

As it was described above, the notifications could be send using the Handler object’s post() method call. The NotificaionRunnable object is passed as the method’s parameter.

On the client side we can request IBinder object and work with it as with the INotifyService interface.  To connect to the service the android.content.ServiceConnection interface implementation can be used. Two methods should be defined: onServiceConnected, onServiceDisconnected:

ServiceConnection conn = null; … conn = new ServiceConnection() { public void onServiceConnected(ComponentName name, IBinder service) { Log.d(“NotifyTest”, “onServiceConnected”); INotifyService s = (INotifyService) service; try { s.sendNotification(“Hello”); } catch (RemoteException ex) { Log.d(“NotifyTest”, “Cannot send notification”, ex); } } public void onServiceDisconnected(ComponentName name) { } };

The bindService method can be called from the client Activity context to connect to the service:

Context.bindService(new Intent(this, NotifyService.class), conn, Context.BIND_AUTO_CREATE);

The unbindService method can be called from the client Activity context to disconnect from the service:

Context.unbindService(conn); 1.3 Remote service control

Broadcasts are the way applications and system components can communicate. Also we can use broadcasts to control service from the PC. The messages are sent as Intents, and the system handles dispatching them, including starting receivers.

Intents can be broadcasted to BroadcastReceivers, allowing messaging between applications. By registering a BroadcastReceiver in application’s AndroidManifest.xml (using <receiver> tag) you can have your application’s receiver class started and called whenever someone sends you a broadcast. Activity Manager uses the IntentFilters, applications register to figure out which program should be used for a given broadcast.

Let’s develop the receiver that will start and stop notify service on request. The base class android.content.BroadcastReceiver should be used for these purposes (http://developer.android.com/reference/android/content/BroadcastReceiver.html):

public class ServiceBroadcastReceiver extends BroadcastReceiver { … private static String START_ACTION = “NotifyServiceStart”; private static String STOP_ACTION = “NotifyServiceStop”; … public void onReceive(Context context, Intent intent) { … String action = intent.getAction(); if (START_ACTION.equalsIgnoreCase(action)) { context.startService(new Intent(context, NotifyService.class)); } else if (STOP_ACTION.equalsIgnoreCase(action)) { context.stopService(new Intent(context, NotifyService.class)); } } }

To send broadcast from the client application we use the Context.sendBroadcast call. I will describe how to use receiver and send broadcasts from the PC in chapter 2.

1.4 Android Manifest

Every application must have an AndroidManifest.xml file in its root directory. The manifest contains essential information about the application to the Android system, the system must have this information before it can run any of the application’s code. The core components of an application (its activities, services, and broadcast receivers) are activated by intents. An intent is a bundle of information (an Intent object) describing a desired action — including the data to be acted upon, the category of component that should perform the action, and other pertinent instructions. Android locates an appropriate component to respond to the intent, starts the new instance of the component if one is needed, and passes it to the Intent object.

We should describe 2 components for our service:

NotifyService class is described in the <service> tag. It will not start on intent. So the intent filtering is not needed. ServiceBroadcastReceived class is described in the <receiver> tag. For the broadcast receiver the intent filter is used to select system events: <application android:icon=”@drawable/icon” android:label=”@string/app_name”> … <service android:enabled=”true” android:name=”.NotifyService” android:exported=”true”> </service> <receiver android:name=”ServiceBroadcastReceiver”> <intent-filter> <action android:name=”NotifyServiceStart”></action> <action android:name=”NotifyServiceStop”></action> </intent-filter> </receiver> … 2. Java service remote installation and start 2.1 Service installation

Services like the other applications for the Android platform can be installed from the special package with the .apk extension. Android package contains all required binary files and the manifest.

Before installing the service from the PC we should enable the USB Debugging option in the device Settings-Applications-Development menu and then connect device to PC via the USB.

On the PC side we will use the ADB utility which is available in the Android SDK tools directory. The ADB utility supports several optional command-line arguments that provide powerful features, such as copying files to and from the device. The shell command-line argument lets you connect to the phone itself and issue rudimentary shell commands.

We will use several commands:

Remote shell command execution: adb shell <command> <arguments> File send operation: adb push <local path> <remote path> Package installation operation: adb install <package>.apk

I’ll describe the package installation process in details. It consists of several steps which are performed by the ADB utility install command:

First of all the .apk package file should be copied to the device. The ADB utility connects to the device and has limited “shell” user privileges. So almost all file system directories are write-protected for it. The /data/local/tmp directory is used as the temporary storage for package files. To copy package to the device use the command: adb push NotifyService.apk /data/local/tmp Package installation. ADB utility uses special shell command to perform this operation. The “pm” (Package Manager?) utility is present on the Android devices. It supports several command line parameters which are described in the Appendix I. To install the package by yourself execute the remote shell command: adb shell pm install /data/local/tmp/NotifyService.apk Cleanup. After the package is installed, ADB removes the temporary file stored in /data/local/tmp folder using the “rm” utility: adb shell rm /data/local/tmp/NotifyService.apk. To uninstall package use the “pm” utility: adb shell pm uninstall <package> 2.2 Remote service control

To be able to start and stop the NotifyService from the PC we can use the “am” (Activity Manager?) utility which is present on the Android device. The command line parameters are described in the Appendix II. The “am” utility can send system broadcast intents. Our service has the broadcast receiver which will be launched by the system request.

To start NotifyService we can execute remote shell command:

adb shell am broadcast –a NotifyServiceStart

To stop the NotifyService we can execute remote shell command:

adb shell am broadcast –a NotifyServiceStop

Note, that the NotifyServiceStart and NotifyServiceStop intents were described in the manifest file inside the <receiver> … <intent-filter> tag. Other requests will not start the receiver.

Appendix I. PM Usage (from Android console) pm [list|path|install|uninstall] pm list packages [-f] pm list permission-groups pm list permissions [-g] [-f] [-d] [-u] [GROUP] pm path PACKAGE pm install [-l] [-r] PATH pm uninstall [-k] PACKAGE The list packages command prints all packages. Use the -f option to see their associated file. The list permission-groups command prints all known permission groups. The list permissions command prints all known permissions, optionally only those in GROUP. Use the -g option to organize by group. Use the -f option to print all information. Use the -s option for a short summary. Use the -d option to only list dangerous permissions. Use the -u option to list only the permissions users will see. The path command prints the path to the .apk of a package. The install command installs a package to the system. Use the -l option to install the package with FORWARD_LOCK. Use the -r option to reinstall an exisiting app, keeping its data. The uninstall command removes a package from the system. Use the -k option to keep the data and cache directories around after the package removal. Appendix II. AM Usage (from Android console) am [start|broadcast|instrument] am start -D INTENT am broadcast INTENT am instrument [-r] [-e <ARG_NAME> <ARG_VALUE>] [-p <PROF_FILE>] [-w] <COMPONENT> INTENT is described with: [-a <ACTION>] [-d <DATA_URI>] [-t <MIME_TYPE>] [-c <CATEGORY> [-c <CATEGORY>] …] [-e|--es <EXTRA_KEY> <EXTRA_STRING_VALUE> ...] [--ez <EXTRA_KEY> <EXTRA_BOOLEAN_VALUE> ...] [-e|--ei <EXTRA_KEY> <EXTRA_INT_VALUE> ...] [-n <COMPONENT>] [-f <FLAGS>] [<URI>] Resources used: Android Installation Guide.

http://developer.android.com/sdk/1.5_r2/installing.html

Android Developer reference.

http://developer.android.com/reference/classes.html

Jesse Burns. Developing Secure Mobile Applications for Android.

https://www.isecpartners.com/files/iSEC_Securing_Android_Apps.pdf

Designing a Remote Interface Using AIDL

http://developer.android.com/guide/developing/tools/aidl.html

Retrieved from “http://www.articlesbase.com/programming-articles/development-and-remote-installation-of-java-service-for-the-android-devices-1127620.html”

(ArticlesBase SC #1127620)

Apriorit -
About the Author:

Apriorit is an Ukrainian software development company.

Apriorit develops its own products as well as provide offshore development and QA services in the areas of advanced system programming, driver development, software for devices.

One of the key values of Apriorit’s specialists is knowledge generation and sharing of experience.

Learn more about Apriorit and its experience at Apriorit Official site

]]>

Rate this Article

1
2
3
4
5

vote(s)
0 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/programming-articles/development-and-remote-installation-of-java-service-for-the-android-devices-1127620.html

Article Tags:
android development, simple java service for the android, communicate with a service, remote service installation

Related Videos

Latest Programming Articles
More from Apriorit

The Google Android Demo

Learn about the new Google mobile phone operating system through this demo. (06:24)

Dell Mini 3i Smartphone Review

The smartphone goes on sale from China Mobile in December (01:17)

Microsoft Expressions Web – Dynamic Site Setup on a Web Hosting Service

Learn the process of setting up the Dynamic Site on a Web Hosting Service using the Microsoft ASP.NET Development Server (02:04)

Do I Need a Wed Developer or a Web Designer?

GoldenWebDesign.com – Learn how to properly assess if you require the services of a web developer or a web designer, and who to turn to for your web needs. (00:34)

Virtual Decorator – Architectural Visualization Services Sample Presentation

Video screen capture from a real time model of a retirement / nursing home development. (02:21)

How to Send Email from a PHP Script ?

Firstly, what Is PHP? PHP stands for Hypertext Preprocessor and is a server-side language. This way that the manuscript is run on your web server, not on the exploiter browser, so you do not demand to stress approx compatibility issues. PHP is relatively new (compared to languages such as Perl (CGI) and Java) but is quickly becomming one of the carcass popular scripting languages on the internet, so how can we send email from a PHP Script ? Look our help in the article body …

By:
Hermannl

Computers>
Programmingl
Nov 18, 2010

Hire Dedicated Magento Developer for Professional PSD-To-Magento Solutions

Hiring dedicated Magento developer is a right way to get professional PSD-to-Magento conversion solution. This article is framed to cover the benefits of outsourcing aid of web developer.

By:
Devashish Kumarl

Computers>
Programmingl
Nov 18, 2010

Advertise In Your Own Website

Forget about unnecessary huge spending on advertising and promotions for your business. There definitely is a market on the Internet. No other advertising and promotions office can guarantee you such an amazingly immense leverage. Advertise in your own website now.

By:
Angela Paulal

Computers>
Programmingl
Nov 18, 2010

Outsourced Software Development to India for Reaping the Maximum Benefits

All your necessary software programs and applications can be designed and developed at very affordable rates just by getting the projects done at an outsourced software development service facility.

By:
Arun Kumarl

Computers>
Programmingl
Nov 18, 2010

Is The Free Registry Cleaner My Anti-Virus Company Is Offering Any Good?

I’ve seen where a couple of anti-virus software programs are “giving” a “free” registry scan and repair to their users. The ones I know of are good legitimate companies with good to excellent virus programs. Now all anti-virus system are not good. And particularly the most common and oldest name is considered very poor by a large segment of the computer repair world.

By:
John Johnsonl

Computers>
Programmingl
Nov 17, 2010

Basics of Software Development in Relation to Offshore Product Development

The trend to outsource software development activities is growing very fast among contemporary businesses. The reason behind the rising popularity of outsourcing is due to the trouble-free availability of competent programmers and computer engineers at low costs. Offshore product development can assist businesses in yielding a big margin in profits on a low-scale investment.

By:
Harkirat Singh Bedil

Computers>
Programmingl
Nov 17, 2010

ASP Net: The Programmer’ key to effective and creative Application Development

The flexibility found in the ASP.NET programming is worth mentioning due to its language independency paradigm. ASP NET application development process follows a set of authentication schemes and default authorization policy that covers the entire user defined codes that can be easily interchanged as per the demand.

By:
Harkirat Singh Bedil

Computers>
Programmingl
Nov 17, 2010

Outsource Software Development to India to Get Quality Services at Cost Effective Prices

In these advanced epochs where Information Technology is ruling the roost, the most sought after bunch of folks are considering custom software development using the services of expert asp.net programmers and J2EE application development professionals. In such milieu, one niche industry segment which is fast emerging as a hot favorite is Offshore Software Development India.

By:
Harkirat Singh Bedil

Computers>
Programmingl
Nov 17, 2010

Testing Strategies for the Software Virtualization Systems

In this article, we will examine the specific of testing of the software virtualization systems. We will touch upon the following questions: * test environment configuration; * testing types; * nuances of each of testing types for the virtualization systems. So, we will examine those important things that should be taken into account when thinking over the testing strategy of the software virtualization system.

By:
Aprioritl

Computers>
Softwarel
Oct 04, 2010

Exchange Server: Express Configuration for Testing

This article can be useful for those testers who configure their test environment themselves without the help of the system administrator. The aim of the article is to present a step-by-step description of the installation and configuration of the domain controller, Exchange Server, and MS Outlook with two accounts for the testing purposes.

By:
Aprioritl

Computers>
Softwarel
Oct 04, 2010

User mode transport of the library via virtual channels

In this article, we provide the library which can be used in client – server applications to cover transport layer using virtual channels. Also we attached sample add-in project (client side) and sample server application.

By:
Aprioritl

Computers>
Programmingl
Jun 11, 2010

Generating PDF reports using nfop

Sometimes we need to create representative PDF reports or documents within our program. In this case, developers face nontrivial problems – for example creating the table of contents (using internal or external links), bookmark trees, picture galleries, etc. This article will help you to examine main features of XSL schemes.

By:
Aprioritl

Computers>
Programmingl
Jun 09, 2010
lViews: 113

How to test virtual desktop acceleration in the LAN and WAN configurations

This article is devoted to the testing of programs that use virtual desktop acceleration to improve performance. Here we will consider features of virtualization, testing scenarios, some useful tools and tips, and also will give examples of real test cases.

By:
Aprioritl

Computers>
Programmingl
Jun 04, 2010

Windows2Linux Porting

Porting an application from one platform (Windows) to another (Linux) is an interesting topic. First, knowledge of several platforms and writing the code for them is a good experience for every developer. Secondly, writing an application for different platforms makes it widespread and needed by many. So, I would like to share my impressions concerning this process. This article is intended for everybody who wants to write a cross-platform application.

By:
Aprioritl

Computers>
Programmingl
May 18, 2010

Port Monitor: How to receive the number of document copies during the printing

In this article, we will examine a problem of receiving the correct value of the dmCopies variable in the DEVMODE structure while printing from Microsoft Word 2003. This can be useful for the case of writing a program that controls printing (to printers, as well as to files).

By:
Aprioritl

Computers>
Programmingl
May 18, 2010

The testing report as the powerful tool of the optimization of the software development process

If you prepared the testing reports without making the preliminary analysis of the findings before, please start doing it. The correctly prepared report on the results of testing is a powerful tool for the optimization of the software development process. That is why let’s pay special attention to this process. This article includes practical recommendations concerning the preparation of different types of testing reports and their ready examples.

By:
Aprioritl
Computersl
May 18, 2010

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box

Apriorit has 20 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

]]>

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Apriorit is an Ukrainian software development company.

Apriorit develops its own products as well as provide offshore development and QA services in the areas of advanced system programming, driver development, software for devices.

One of the key values of Apriorit’s specialists is knowledge generation and sharing of experience.

Learn more about Apriorit and its experience at Apriorit Official site

Archos 7 8GB Home Tablet with Android (Black)

  • 8GB capacity for about 4000 songs, 80,000 photos, or seven full-length movies
  • Seven hours of video or 42 hours of audio on a single charge
  • 7-inch TFT LCD touchscreen with 800×480 pixel resolution, 16m colors
  • Supports H.264/MPEG-4/Real video codecs in AVI, MP4, MKV, MOV, and FLV file formats; MP3, WMA, WAV, APE, OGG, FLAC
  • One-year limited warranty

ARCHOS now introduces a new large-screen Android-based tablet, the ARCHOS 7 home tablet. This new product is specially designed to enhance the digital lifestyle in the home. The ARCHOS 7 home tablet bridges the gap between the smartphone and the desktop PC to provide constant access to the web, customization through Android Apps, and multimedia content – all in a large-screen format. This new device testifies to ARCHOS’ strategy of offering innovative electronic products with extremely competiti

Rating: (out of reviews)

List Price: $ 199.99

Price: $ 182.95

Open Source Wireless-G Router

  • Open source 802.11G router allows Linux users and developers create custom firmware for special appl
  • Switch with four 10/100 Mbps auto-sensing ports; external antenna and internal diversity antenna for
  • Features 240 MHz CPU, 4 MB flash and 16MB RAM and runs the Linux operating system
  • Supported by open source community website with forums, blogs and downloads
  • Measures 6.9 x 1.1 x 4.7 inches (WxHxD); 1-year warranty

Open Source Wireless-G Router

Rating: (out of reviews)

List Price: $ 84.00

Price: $ 57.51

Open Source Technology: The Cost At The Enterprise Level

Open Source Technology: The Cost At The Enterprise Level

Free Online Articles Directory

Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via

Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Information Technology > Open Source Technology: The Cost At The Enterprise Level

Open Source Technology: The Cost At The Enterprise Level

Edit Article |

Posted: Apr 28, 2009 |Comments: 0

|

Share

]]>

Syndicate this Article

Copy to clipboard

Open Source Technology: The Cost At The Enterprise Level

By: Jeff Merritt

About the Author

Jeff Merritt

(ArticlesBase SC #891004)

Article Source: – Open Source Technology: The Cost At The Enterprise Level





Abstract

 

 

Open source software has generated much interest, especially in the wake of a slow economy.  This has forced many Information Technology (IT) departments to cut back on spending.  One of the main reasons open source technology is being considered by more IT departments is because open source technology is perceived as being free of charge.  While that perception is not all together true, this article will discuss an example of the real cost savings of open source technology as an enterprise system solution.  All costs related to the implementation of an open source server operating system including the hardware costs to run the operating system software, training costs to setup the operating system software, support cost to maintain the operating system software, and staff salary to administer the operating system software will be recognized in this article. 

 

 

 

 

 

 

 

 

 

 

 

 

Open Source Technology – The Cost at the Enterprise Level

 

     Open source refers to any program whose source code is made available for use or modification as users or other developers see fit. (Historically, the makers of proprietary software have generally not made source code available.)  Open source software is usually developed as a public collaboration and made freely available (Open Source, 2008).  When companies are deciding on whether to use open source products versus commercial products the benefits of both choices are apparent.  Commercial products typically favor visible features (giving marketing advantage) over hard to measure qualities such as stability, security and similar less glamorous attributes. Some experts describe this phenomenon as quality versus features (Benefits of Using Open Source, n.d.).  This paper examines the enterprise level cost of an open source technology system.  Different factors discussed in this paper include the cost of open source software, the cost of open source hardware, the cost of open source training to support this platform, and the salary requirements for open source administrators.  For the purpose of this paper, the total cost of ownership of an open source production database server will be discussed in detail.

     There are many different distribution options or ‘flavors’ a technology manager can choose from that are considering an open source operating system.  Linux is about freedom and choice, so one has plenty of freedom to choose the flavor of Linux that best fits the business needs (Linux Distributions, n.d.).  Common flavors of Linux include:

Red Hat Enterprise Linux Mandrake Linux The Fedora Project The Debian Project Knoppix SUSE Linux Slackware Linux MEPIS Linux Ubuntu Linux Xandros PCLinux OS Linspire

     Jim Klein (2009) writes that Total Cost of Ownership (TCO) can be defined as all of the costs of acquiring and maintaining a network of computers. This includes the cost for Hardware and software technology – client computers, servers, software, printers, networking equipment, external service providers

Direct labor – those responsible for purchasing, training, implementation, management and support of the computer environment Indirect labor – time spent by users in training, dealing with computer and networking issues, and effect of computer or network down-time.

     Red Hat Linux is one of the most supported Linux operating systems on the market.  Red Hat provides operating systems for the individual users as well as the large enterprises.  When pricing operating systems it’s very important to know the hardware that this operating system will reside on.  For example, it makes a difference if this operating system is a dual processor or a quad processor.  For the purpose of this paper, the server we want to install Red Hat on is a quad Intel processor.  Because this server is a production server, 24/7 support is required.  According to Red Hat, the best license option for this configuration is the ‘Red Hat Enterprise Linux Advanced Platform, Premium Subscription’ (Server Operating Systems, n.d.).  When you subscribe to a Red Hat subscription, you’re renting the use of that software.  With the Premium Subscription of Red Hat Enterprise Linux Advanced Platform you get the following:

Unlimited CPU processors Unlimited virtualized guests Red Hat global File System and Cluster Suite Web and phone-based comprehensive support 24×7 coverage 1 hour critical response (4 hour normal response time) Red Hat Network Update Product Updates Installation and documentation media Covered under the Open Source Assurance program Server applications to include ISV applications, Apache, Samba, nfs, ftp, Tomcat, MySQL, and PostgreSQL

     For the purpose of this paper the server this Red Hat software will run on will be a Dell PowerEdge Energy Smart Quad Core Intel Xeon L5410 server.  This server comes with 8 Gig of ram and 3 73 gig hard drives.  The cost of this server is 50.00 (Dell, Select Components, n.d.).  This hardware is approved by Red Hat as a supported hardware platform. 

     The skill sets required to support an open source environment requires a person who completely understands how each component in an environment works.  In most environments this person’s title would be a Linux administrator.  A capable Linux administrator will have a variety of skills.  Jay Beal (2004) provides skill sets a Linux Administrator should have would include security, operating system hardening, software installation, hardware installation, system assessment, troubleshooting, and intelligence gathering (Essential Linux Skills, 2004).

     Security in any environment is essential.  A Linux administrator must understand that any port on any server is venerable to an attack.  Every port must be accounted for and the Linux administrator needs to know what log files are tracking all port traffic.  Those log files need to be monitored daily for malicious attacks.  In case an attack occurs, a Linux administrator should know how to recover from a server that has crashed.

     Most default server installations install more services that are generally needed.  A Linux administrator needs to be aware of the purpose of the server and understand specifically what services need to be running and just as important, what services do not need to be running.  Those services that do not need to be running should be shut down and the Linux administrator needs to recognize these services and shut those services down along with the ports they use.

     At some point, the server may need software and/or hardware upgrades.  A Linux administrator needs to be prepared to apply upgrades or patches for software upgrades.  Those software patches may require more hardware in order to run optimally.  In this case a Linux administrator needs to be comfortable upgrading the hardware if there is a need to do so. 

     Finally, the Linux administrator needs to be able to assess the system and if there is concern, research the problem and find the solution.  Because open source software is mostly supported by the ‘community’, it can be tedious to find solutions to complex problems.  If the Linux administrator is fortunate, support is paid for when the subscription is obtained.  If support is not paid for, the Linux administrator has to rely on good research skills to solve the problem.

     Finding a good Linux administrator to administer the open source environment is hard to do.  When you do find them, it is obvious that they are in great demand by the salary requirements they are demanding.  A seasoned Linux administrator that is industry certified will demand as much as k – 120k per year if he/she is considered a full-time employee (Salary Search, n.d.).  Linux contractors range from .00 – 0.00 per hour. 

     One of the benefits of having an open source environment is training courses are usually reasonably priced.  The only difficulty is finding a training center that specializes in open source technology training.  Most 3-day classes will range anywhere from 00 to 00 dollars per class.  Most 5-day classes will range from 00 – 00 dollars per class.  If your Linux administrator is a good self-learner there are many options online that he/she can take advantage of.  Many websites offer free online training videos and free training manuals for anyone interested in taking advantage of them.

     As it is evident, the notion of open source technology being free is far from true.  However, many experts agree that the total cost of ownership is less than it would be if commercial software was being used.  Dan Orzech (2002) writes that the cost of Linux is roughly 40% that of Windows, and only 14% that of Sun Microsystem’s Solaris based on a study of various operating systems over a 3 year period.  Below is a table that summarizes the total cost of ownership for a typical open source database environment.

Total Cost of Ownership
(Annual)

 

Description of Service

Cost

Linux OS Software including Premium Support

99.00 per year

Linux Administrator

0,000 per year

Ongoing Training

00.00 per year

Total Cost

2,799.00 per year

 

Total Cost of Ownership

(One-Time Cost)

Server Hardware

50.00 purchase price

Total One-Time Cost

50.00

 

     As one can see from the table above, open source technology is not free.  Open source proponents and proprietary companies disagree on the total cost of ownership. Proponents claim that even if open source requires more expertise, the TCO is ultimately lower.  Companies claim that the required expertise is daunting and the other costs of proprietary solutions are exaggerated (Open Options, 2005).  Yes, there are some ways that prices could be cut.  The Linux administrator could be contracted out on an ‘as needed’ basis.  It is also possible to purchase a server with fewer features and less processors if cost was a factor when purchasing hardware.  Training could be kept to a minimum or even limited to online training only.  Even with all this being said, the myth that open source technology is free just is not a true statement, especially in a production environment.  However, open source technology is the preferred technology in many IT shops for reliability reasons. 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Retrieved from “http://www.articlesbase.com/information-technology-articles/open-source-technology-the-cost-at-the-enterprise-level-891004.html”

(ArticlesBase SC #891004)

Jeff Merritt -
About the Author:

Jeff Merritt

]]>

Rate this Article

1
2
3
4
5

vote(s)
0 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/information-technology-articles/open-source-technology-the-cost-at-the-enterprise-level-891004.html

Article Tags:
open source, tco

Related Videos

Related Articles

Latest Information Technology Articles
More from Jeff Merritt

What is Open Source

In this top tech video you will learn what open source refers to in open source software. (00:54)

How to Understand Open Source Software Licenses

In this top tech video you will learn how to Understand Open Source Software’s different licenses (00:45)

How to Contribute to Open Source Software

In this top tech video you will learn how to contribute to open source software. (01:39)

How to Work With Others on Open Source Material

In this top tech video you will learn how to work with others when working on open source material, how to work with your own ideas and how to compromise. (00:58)

Ways to Contribute to Open Source Software

In this top tech video you will learn the various ways to contribute to open source material (02:05)

Open Source Telephony Expands

During last week’s Internet Telephony Expo (ITEXPO) in Los Angeles, I had the opportunity to speak with a number of vendors about open source software designed to create internet telephony platforms. While implementing such telephony software solutions can often require programming knowledge, a variety of user-friendly solutions are now hitting the market, and it was evident from the conversations that the open source software movement is continuing to gain momentum in the telephony space.

By:
Mark Lovettl

Computers>
Softwarel
Oct 29, 2010

The Power and Roi of Open Source

According to IDC’s recent research, enterprise adoption of open source has grown manifold; companies worldwide are increasing investment in open source technologies. The Open Source architecture delivers a suite of standards based technologies and services, allowing open source and traditional software applications to be co-existed and can be deployed on reliable, secure, scalable and highly performing platforms. To the enterprise, it is the power to assemble and dissemble the architecture.

By:
Whitneyjoanl

Computers>
Information Technologyl
Nov 07, 2006
lViews: 440

Benefits of Open source Web Development

Opensource development is a buzzword in present market. There are some obvious advantages of opensource software development over the proprietary software development. In this series we have analyze and depict the advantages in logical manner.

By:
Jessica Woodsonl

Computers>
Programmingl
May 11, 2010

10 Creative ways to cut your Technology TCO

With businesses everywhere tightening their belts, it could be time to get medieval on the Total Cost of Ownership (TCO) of your IT setup. Here’s how…

By:
Insight UKl

Technology>
Communicationl
Jul 14, 2010

Web hosting

Windows or Linux is not a big issue. Actually they are two different paths to reach to the destination no matter which way you follow but as a businessman you need to keep in mind pros and cons of both the ways

By:
rebeccal
Technologyl
Jun 22, 2010

Free Software – Part I

The cautiousness with which the Open Source software has been treated until recently, seems to be disappearing. Today the Open Source software is seen as a source of savings on licence fees, which additionally equals many commercial applications in quality.

By:
Adam Nowakl
Computersl
Apr 03, 2008

Why Linux And Windows Will Never Do Your Laundry

If a store opened across the street from Target, same relative inventory, same service, only difference everything was free, would Target survive? Unlikely. Yet in software… ”Payware” = “Freeware” (open source) ————————————– Windows = Linux Oracle = MySQL MS Office = OpenOffice Ultra Edit = PSPad …the current reality is that payware and freeware compete in the…

By:
Eric Matthewsl
Computersl
Feb 20, 2007

Emergence of Cloud computing to cut down business cost

Cloud Computing is the concept which has emerged as a solution for every second small and medium business as it helps them to earn decent profit and reach to the next level of growth. Earlier most of the small sized businesses which were dependent on information technology were struggling to sustain their growth as they were not able to meet their operational expenses.

By:
williamsmithl

Computers>
Information Technologyl
Nov 19, 2010

Killtest The Open Group Certification OG0-091 Real Dumps Share

Using Killtest The Open Group Certification OG0-091 Real Dumps to clear the exam in the first attempt. Killtest OG0-091 real dumps can make sure you pass the exam successfully.

By:
xanndyl

Computers>
Information Technologyl
Nov 19, 2010

Clear Selling HP Integrity Server Solutions [2010] HP2-Q04 Exam Easily

Killtest has cracked the latest practice questions for HP certification HP2-Q04 exam, which can make sure you pass the exam in the first attempt. Otherwise, you can get a full refund.

By:
xanndyl

Computers>
Information Technologyl
Nov 18, 2010

Killtest HP2-E31 Selling HP Enterprise Solutions Released

KillTest experts provide the newest Q&A of HPCertificationIII Selling HP Enterprise Solutions HP2-E31 exams, completely covers original topic. With our complete HP2-E31 resources, you will minimize your cost of HP test and be ready to pass your HPCertificationIII Selling HP Enterprise Solutions HP2-E31 test on Your First Try, 100% Money Back Guarantee included.

By:
xanndyl

Computers>
Information Technologyl
Nov 18, 2010

Killtest IBM-LOTUS 000-M38 Practice Exam Questions & test Dumps

Killtest has released the latest practice exam questions for IBM 000-M48 exam, which is useful and valuable for you to take the exam.

By:
xanndyl

Computers>
Information Technologyl
Nov 18, 2010

Two Main Categories Of Fiber Optic Products

Fiber optic is one of the promising technologies that has been introduced for the benefit of the science and technology a many years ago. From that day onwards, we have been using fiber optics for many reasons including for communications mostly. Due to the wide use of fiber optics, there have been thousands of fiber optic products manufactured.

By:
lisa lucerol

Computers>
Information Technologyl
Nov 18, 2010

Truth about geeks in minutes

Geeks in minutes operates websites to fool individuals across the country into using their services which the just get a random tech off of the net.

By:
Marty Kazanjianl

Computers>
Information Technologyl
Nov 18, 2010

Questions To Ask A Computer Repair Technician Before You Hire Them For Home Use

A computer that is broken in the home or office, is one that will need to be fixed. Many people value their computing devices and are unsure as to where to leave them when they are broken. There are many services who claim to know how to fix computer issues. When a shop is found, there may be Questions to ask a computer repair technician before you hire them. These concerns will help a computer owner know if the computer shop is one that they want to use or not.

By:
Bill Arnoldil

Computers>
Information Technologyl
Nov 18, 2010

Open Source Technology: The Cost At The Enterprise Level

This paper examines the enterprise level cost of an open source technology system. Different factors discussed in this paper include the cost of open source software, the cost of open source hardware, the cost of open source training to support this platform, and the salary requirements for open source administrators. For the purpose of this paper, the total cost of ownership of an open source production database server will be discussed in detail.

By:
Jeff Merrittl

Computers>
Information Technologyl
Apr 28, 2009

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box

Jeff Merritt has 1 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

]]>

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Jeff Merritt

Netgear WGR614 Open-Source Wireless-G 4-Port Router – Designed for Linux Developers & Open Source Experts!

  • Netgear WGR614 Open-Source Wireless-G 4-Port Router General Features: 4-port wireless router
  • 54 Mbps maximum data transfer rate 2.4 GHz frequency band Two (2) Detachable antennas Standards:
  • IEEE 802.11b IEEE 802.11g IEE 802.11i Encryption: WPA2 WPA-PSK 128-bit WEP 64-bit WEP
  • 40-bit WEP WPA Networking: VPN passthrough Firewall protection Auto-sensing per device
  • DHCP support

This Netgear WGR614 Open-Source Wireless-G 4-Port Router delivers open source code for Linux developers and hobbyist! Because of the open-source code the router uses, you can create firmware for specialized applications such as gaming, VoIP (voice over Internet protocol), security or increased signal strength!This 4-port wireless router delivers up to 54 Mbps maximum data transfer rate and offers greater flexibility with dual detachable antennas! Additionally, the Wireless-G router delivers up t

Rating: (out of reviews)

List Price:

Price:

NETGEAR KWGR614 Open Source Wireless-G Router

  • Open source wireless router allows for customization and ability to create firmware
  • Switch with four 10/100 Mbps auto-sensing ports
  • 802.11g wireless access point
  • Backed by 1-Year warranty
  • Device measures 7.4 x 1.25 x 4.9 inches (WxHxD)

NETGEAR KWGR614 Open Source Wireless-G 54NMbps Router.Amazon.com Product Description .caption { font-family: Verdana, Helvetica neue, Arial, serif; font-size: 10px; font-weight: bold; font-style: italic; } ul.indent { list-style: inside disc; text-indent: 20px; } table.callout { font-family: Verdana, Helvetica, Arial, serif; margin: 10px; width: 250; } td.callout { height: 100 percent; background: #9DC4D8 url(http://images.amazon.com/images/G/01/electronics/detail-page/callout-bg.png) repeat-x

Rating: (out of reviews)

List Price: $ 96.00

Price:

[wprebay kw="open+source" num="0" ebcat="all"] [wprebay kw="open+source" num="1" ebcat="all"]

Web Development with Power of Open Source

Web Development with Power of Open Source

Free Online Articles Directory

Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via

Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Software > Web Development with Power of Open Source

Web Development with Power of Open Source

Edit Article |

Posted: May 26, 2009 |Comments: 0

|

Share

]]>

Syndicate this Article

Copy to clipboard

Web Development with Power of Open Source

By: Rozial Max

About the Author

Hidden Brains has been in the Industry since 2003 and provided solution using languages like PHP/MySQL & ASP.Net Application Framework. For more details please refer this URL www.hiddenbrains.com.

(ArticlesBase SC #936704)

Article Source: – Web Development with Power of Open Source





The concept of open source can be defined as offer of free or unlock access to the source of the product for the purpose of designing, developing, and distributing. In the terms of web development open source conception has taken rise with the development and use of internet frequently by the people.

In the world of web development there are various open source products available for the creation of dynamic websites and other business promotion online tools. In the global online business environment many web development companies offer the professional services for the development of online business tools. Listing up some popular open source products includes, Joomla, Mambo, Drupal, CakePHP, Oscommerce, Ruby on Rails, etc. Most of the products are used by the developers for the dynamic presentation of businesses from various industries in customized manner in form of websites, templates and other online presentation tools.

Counting all benefits of using open source products will turn into long list, collection of most important advantages include Cost effectiveness which  is one of the most significant benefits as all open source product’s source code are freely available on the net. Any internet user can access the source code of these products for development of websites and other open source web development tools. Using open source products in website development helps the developers at great extent for the dynamic presentation of the content as well as modification and integration of new features to the websites is possible by using open source technologies. Using open source products in the website development makes the websites more interactive, great user interface, strong administrative rights and smooth functionality.

Customized website development is one of the most popular advantages of using open source products in the web development market and active technical and non technical support from the communities which help the developers for the development of web. Adaptability factor of open source helps the developers to provide innovative products as open source allows the changing business environment and developers use to enjoy more flexibility and freedom in the website development. Open source products offers simplicity factor such as easy to find, easy to implement and easy compatibility with other technologies. To improve the system reliability and security experienced developers prefers use of Open Source Software (OSS) which is also very cost effective.

Content management is also another big advantage of using open source products and there are browsers like Mozilla Firefox, operating systems like Linux comes under open source phenomenon. Open source is very useful in specific business operations and other office related works and thus they are widely used by big and small organizations all over the business world.

Power of open source concept in the web development has changed the form of global online business environment.

Retrieved from “http://www.articlesbase.com/software-articles/web-development-with-power-of-open-source-936704.html”

(ArticlesBase SC #936704)

Rozial Max -
About the Author:

Hidden Brains has been in the Industry since 2003 and provided solution using languages like PHP/MySQL & ASP.Net Application Framework. For more details please refer this URL www.hiddenbrains.com.

]]>

Rate this Article

1
2
3
4
5

vote(s)
0 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/software-articles/web-development-with-power-of-open-source-936704.html

Article Tags:
open source development, open source web development, web development, customized website development, open source website development, web development companies, open source products, open source software

Related Videos

Related Articles

Latest Software Articles
More from Rozial Max

What is Open Source

In this top tech video you will learn what open source refers to in open source software. (00:54)

How to Understand Open Source Software Licenses

In this top tech video you will learn how to Understand Open Source Software’s different licenses (00:45)

How to Work With Others on Open Source Material

In this top tech video you will learn how to work with others when working on open source material, how to work with your own ideas and how to compromise. (00:58)

Ways to Contribute to Open Source Software

In this top tech video you will learn the various ways to contribute to open source material (02:05)

How to Contribute to Open Source Software

In this top tech video you will learn how to contribute to open source software. (01:39)

Offshore Software Development Company in India Provides Cost-effective Software Solutions

Indian offshore software development companies provide array of software and web development services at very competitive pricing which enhance clients business.

By:
Annie Brunsonl

Computers>
Softwarel
Aug 09, 2010

Web Design Services India

Our website designing company aims to provide a complete IT solution in different environment to increase the compatibility of your website in the field of Internet.

By:
Gaurav Guptal

Internet>
Web Designl
Jan 21, 2010

Why Your Business Must Have Good Web Hosting

Many business owners know the value of having a good website but they don’t always link that to the importance of having a good web hosting service provider. Having a brilliant website won’t mean much if your website is not accessible, and this is where your web hosting service provider plays an important part.

By:
SharkToothl

Business>
Online Businessl
Nov 08, 2010

Know more about Expert Web Development Service Providers

The web development service providers can assist their clients in determining the most effective way to spend their valuable money. Most of these service providers have experience in developing websites which is indexed by search engines like Google, Yahoo and others.

By:
spinxwebdesignl

Internet>
Web Designl
Dec 09, 2009

Open Source Development

Open Source Software are free applications released under special licensing terms where the core coding is viewable and able to be edited to suit the needs of the user. Open Source applications cover a myriad of uses – from entertainment to enterprise ecommerce. Open source software like Joomla, magento and osCommerce are very popular and widely used. They are content management system and it maintains track of every piece of content including music, videos, text, widgets, images and documents.

By:
Digisha Modil

Computers>
Programmingl
Dec 30, 2009

Critical Analysis Of Web Crawlers’ Algorithms

A web crawler is a program or automated script which browses the World Wide Web in a methodical, automated manner. The objective of the paper is to make a make a critical analysis of the algorithms used by Web Crawlers. It intends to review and evaluate the different and various approaches to the methods used by the different web search engines to catalog the information.

By:
minoul
Internetl
Mar 04, 2009
lViews: 257

Differences Between Custom and Hosted eCommerce Website Software Solutions

Once an e-commerce store is built, it is incredibly difficult to change the entire operation over to a new hosting provider or design. Here is a great write up to learn advantages and disadvantages of hosted and custom ecommerce website software solutions.

By:
David Ephraiml

Internet>
ECommercel
Jul 16, 2010

What are some of the slow PC symptoms?

File fragmentation is the process of splitting one file into multiple pieces in order to save it into memory. The result of this process is increased processing time, which ultimately slows your PC down. Other causes that lead to slow PC performance include viruses which can hog system resources, inefficient memory, and outdated hardware.

By:
albertsoftl

Computers>
Softwarel
Nov 18, 2010

Helpful Hints on How to Scan Drivers for Your Computer

Technology is upgrading with time and getting harmonized with it is of prime importance. You need to update your computer drivers every time you purchase any new electronic device.

By:
Mr. Poml

Computers>
Softwarel
Nov 18, 2010

Simplify the Problems to Get the Microsoft Driver Updates

Do you find it difficult to get Microsoft driver updates from their official website? It’s quite obvious to get annoyed while searching for more hours than required.

By:
Mr. Poml

Computers>
Softwarel
Nov 18, 2010

Is a Website’s Look and Feel Protected?

The advent of the Internet has totally revolutionized the business world by opening up new avenues for companies and organizations to promote their products and services more effectively.

By:
ajaxl

Computers>
Softwarel
Nov 18, 2010

Mobile Applications Development- Keeps you on the move

Mobile industry is highly volatile and whirling. At the same time, if you click then sky is the limit for you in this field.

By:
Jessical

Computers>
Softwarel
Nov 18, 2010

OLAP Server-The Systematic Business Manager

OLAP server or ONLINE ANALYTICAL PROCESSING SERVER is the ready made solution to systematize and organize a business as it is enabled with the capacity of accessing huge amount of information at a time.

By:
Carlos Quijadal

Computers>
Softwarel
Nov 18, 2010

OLAP server, the server to online analytical processing

OLAP server or ONLINE ANALYTICAL PROCESSING SERVER is the server which serves the OLAP with xml queries and OLAP 4 software.

By:
Carlos Quijadal

Computers>
Softwarel
Nov 18, 2010

Laptops Influencing Routine Lives

Can you imagine work without a laptop today? Obviously not! And the market is full of the best laptops; it is up to you to decide which brand and model to opt for. The choice is not limited to one particular type of laptop. Depending on the laptop prices, you can go for embedded mobile broadband laptops, premium laptops, everyday laptops, gaming laptops, ultra-thin laptops, refurbished laptops, and small business laptops.

By:
naval gogial

Computers>
Softwarel
Nov 18, 2010

Wireless (Wap) Mobile Application Development

Mobile Application Development India – offshore mobile application development company has expertise in mobile application development, mobile software development, windows mobile application development, mobile programming, android mobile application development,Hire mobile application programmer developer for custom mobile application development in UK, Europe, USA, Netherlands, Belgium, Germany, Denmark, France, Italy, Japan, Portugal, brazil, and world wide.

By:
Rozial Maxl

Home Improvement>
Interior Designl
Mar 23, 2010

Flash/flex Games For Fun & Great Revenue Generators

Although there are various technologies can be used for the development of computer games but designers are showing more interest in flash game development.

By:
Rozial Maxl
Computersl
Feb 21, 2010

WordPress A Great Platform For Learning Website Development

Reach of WordPress system in field of blogs cannot be denied; gradually people have realized the alternative uses of this multipurpose system as it provides easy to use features. WordPress provides beautiful templates and themes to use in the website development.

By:
Rozial Maxl
Computersl
Feb 08, 2010

An Overview To Graphic Designing For Businessmen

In acquainted world of presentations it is necessary for every online or offline businessmen to have some knowledge about designing & development. Graphic designing provides the online presence to business in many forms such as websites, logos, brochures, business cards, book design, magazine layout, newspaper layout, etc.

By:
Rozial Maxl

Computers>
Information Technologyl
Jan 27, 2010

Real Estate Business Websites & Techniques for better Online Exposure

Real estate websites and software helps real estate professionals (Real Estate Brokers and Agents) to save precious time of their busy schedules. For using the appropriate web technology for the real estate business, real estate professionals should hire real estate website designers.

By:
Rozial Maxl
Computersl
Dec 04, 2009

Logic behind N -Tier Application Development

In the professional & technical language this separation or division process is called N-Tier Application Development process, where “N” stands for number and “tire” stands for layers or parts.

By:
Rozial Maxl
Computersl
Nov 23, 2009
lViews: 264

Power, Reliability & Feature Richness – DotNetNuke an Open Source Framework

In the highly fluctuate and competitive online web development market, open source technologies likeDotNetNuke framework are playing extremely supportive role with capability of providing satisfactory web application development solutions.

By:
Rozial Maxl
Computersl
Nov 06, 2009

World-wide Approbation of OsCommerce

Global admiration of any system in the web world is hard to achieve without out- standing features to feed the modern online customers! In the field of online shopping, OsCommerce have achieved the fame for its convincing performance.

By:
Rozial Maxl

Computers>
Softwarel
Oct 28, 2009

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box

Rozial Max has 20 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

]]>

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Hidden Brains has been in the Industry since 2003 and provided solution using languages like PHP/MySQL & ASP.Net Application Framework. For more details please refer this URL www.hiddenbrains.com.

NETGEAR RangeMax Premium Wireless-N Gigabit Router (WNR3500)

  • Built-in Ultra Fast 4-port Gigabit switch means even faster network performance
  • Automatic Quality of Service (QoS) ensures reliable Internet, voice, video, and gaming applications
  • Surf, email, stream HD video, on-line game, make Internet phone calls¿simultaneously
  • Easy secured set-up with Push `N¿ Connect using WiFi Protected Set-up (WPS)
  • Maximum performance requires use of Wireless-N adapters

Netgear Wireless N Giga RouterAmazon.com Product Description .caption { font-family: Verdana, Helvetica neue, Arial, serif; font-size: 10px; font-weight: bold; font-style: italic; } ul.indent { list-style: inside disc; text-indent: 20px; } table.callout { font-family: Verdana, Helvetica, Arial, serif; margin: 10px; width: 250; } td.callout { height: 100 percent; background: #9DC4D8 url(http://images.amazon.com/images/G/01/electronics/detail-page/callout-bg.png) repeat-x; border-left: 1px solid

Rating: (out of reviews)

List Price: $ 114.99

Price: Too low to display

Open Source Versus Closed Source Software

Open Source Versus Closed Source Software

Free Online Articles Directory

Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via

Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Software > Open Source Versus Closed Source Software

Open Source Versus Closed Source Software

Edit Article |

Posted: Oct 10, 2009 |Comments: 0

|

Share

]]>

Syndicate this Article

Copy to clipboard

Open Source Versus Closed Source Software

By: Rajkumar Singh Tomar

About the Author

(ArticlesBase SC #1322405)

Article Source: – Open Source Versus Closed Source Software





In today’s business world which uses IT for its optimal and non-stop functioning, a database is something which any organization will not run without. Speedy business needs has made database an absolute requirement.  This has given rise to a numerous software solution providers or database developers. As their number increases, so is the competition between them. These all vendors always think about new and innovative ideas to win the market competition. One of these way has been to offer customer an open source software so that if the customers preferences changes they can make necessary amendments by spending much less money than to buy a complete new software. Does this, supplying open source software, give an indication about future of all database Vendors? Do all database vendors will eventually have to open up their source code or go out of business? This essay disagrees to this thought and will examine few reasons for it. Those who still believe in supplying closed source software will always own a bigger share of the market as they have been doing it in the past. 

In the recent past some companies have searched for a more economic database than to shell out a hefty amount to Database biggies every time they thought of expanding their business limits. There stepped in the open source database software because modifying it to the extended needs just take little. As the volume of business is rising and so does the requirement of software capabilities. Many companies today resort to open source database but merely acquiring an open source doesn’t guarantee that whatever changes you make to the database it will always work with finesse. There may be instances of irrecoverable data loss or reduced security. There will be no one to take guarantee to that effect. That’s why, industries where there is a requirement of updating the software importantly with the transfer of their past crucial data, they will always look for bigger companies doing this against insured terms. These insured terms are not possible even if you have a complete software development wing in your office. Developing software is a group effort, but modifying the software with keeping existing data intact is a serious group effort. Now days there are so many companies selling open source databases but they are less preferred upwards in size of business. So the open source will of course keep in market and remain in competition with the packed database software but will never be able to beat them. There is also a psychological reason behind this that as someone reaches towards the peak his chances of falling are increasing. The top of the peak is all surrounded by falls so after reaching near to peak no one would like take a cheap and risky step but will always go for a costly but assured step. For example a bank would never use open source software modified by its own organization. 

There is a related online special article in which Lacy S (2006) has told about Herman’s search for database management keeping budgetin mind. “His search took him in an unexpected direction. He’s spended a lot of time evaluating databases built around the open-source software that’s disseminated and developed freely over the Internet. Sony, like most big companies, has been conservative when it comes to open source. So now Herman and executives like him are the spoils in what’s shaping up to be a heated round of database wars. On one side are the defending champions — Oracle, IBM, and Microsoft — against a ragtag bunch of coders and some more organized corporate ventures, all going to market in different ways, but all trying to take down the Big Three using the power of open source.” 

This open source trend is rising not only in database softwares but in other fields too. In this regard Va?lima?ki (2005) states in his book – The rise of Open Source Licensing, that in IDC 2003, Microsoft’s share of all revenue generating server shipments in 2002 was 55% while Linux held only 23%. Also open source has not been that successful in personal computer desktop software so far. The market shares have not been changed much. If one uses searches made on Google as an indicator, during June 2001 and June 2004, a steady 1% of all searches came from computers using Linux as the operating system.

Today top database masters – IBM, Microsoft and Oracle own the ¾ of database market and same time there is this rising trend of open source databases. This trend is certainly shooting up and will go up but certain parameters. As I mentioned before that as the security and sensitivity increases and time required to be given is less people will always land up at either at IBM, Microsoft or Oracle.

“Most open source projects are being worked on by developers who do it for fun and in their own time. Most projects have no funding or financial support. There are often no official code reviews or quality assurance processes in place. With the correct knowledge it is quite trivial to find security problems in open source software. With the correct knowledge, it becomes trivial to use this information for evil purposes. With the correct knowledge, it is quite trivial to fix these problems.” (Mongers.org)

Thus, database developers who supply close end software will remain in business and their product will be preferred before open source software. However open source software will still remain in tandem to meet needs of some continually growing smaller businesses.

 

 

REFERENCES 

Lacy, S. (2006). Taking On the Database Giant. Retrieved February 28, 2008, from the business week website tc20060206_918648.htm 

Mongers.org. Open Source versus Closed Source. Retrieved Mar 03, 2008, from the http://mongers.org/open-vs-closed 

Va?lima?ki, M. (2005). The rise of open source licensing: a challenge to the use of intellectual property in the software industry. Helsinki, Finland: Turre., 18-19 

Wikipedia, (2007). Open Source Software. Retrieved February 26, 2008 from http://en.wikipedia.org/wiki/Open_source_software

Retrieved from “http://www.articlesbase.com/software-articles/open-source-versus-closed-source-software-1322405.html”

(ArticlesBase SC #1322405)

Rajkumar Singh Tomar -
About the Author:

]]>

Rate this Article

1
2
3
4
5

vote(s)
1 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/software-articles/open-source-versus-closed-source-software-1322405.html

Article Tags:
open source software, closed source software, source code battle

Related Videos

Related Articles

Latest Software Articles
More from Rajkumar Singh Tomar

How to Contribute to Open Source Software

In this top tech video you will learn how to contribute to open source software. (01:39)

Ways to Contribute to Open Source Software

In this top tech video you will learn the various ways to contribute to open source material (02:05)

How to Understand Open Source Software Licenses

In this top tech video you will learn how to Understand Open Source Software’s different licenses (00:45)

Why Use Free or Open Source Software

This short video describes the advantages, particularly for students, of using free or open source software. (01:16)

What is Open Source

In this top tech video you will learn what open source refers to in open source software. (00:54)

Open Source vs. Closed Source Software: The Great Debate

The aim of this report is to provide a greater understanding of the differences between open source and closed source (proprietary) software, and the advantages and disadvantages of each to enable a more informed decision making process when it comes to choosing between the two. The main issues that have been raised surrounding the debate include cost, service and support, innovation, usability, and security. As such, this report will analyse open source and closed source software with reference

By:
jeffersondaniell
Internetl
Jul 15, 2009
lViews: 286

Tech Titans Sniping: The Logical Battle Continues

Top technology executives including Dewey Schneebley found themselves in another round of back-biting this week, after Apple Inc. (NASDAQ: AAPL) Chief Executive Steve Jobs went out of his way to publicly criticize his competitors and their products.

By:
Ronald Russol

Finance>
Investingl
Oct 22, 2010

Iphone – the Next Wonder of the World or Just a Flop?

I have spent some time writing about the iPhone, first about the firmware 1.0 and then some articles about the firmware 2.0 with GPS and 3G.
I have compiled all articles in one article for easier reference for you as a reader. This summary article will make it easier for you to find information about the iPhone, and be a better judge for yourself, whether iPhone is the next wonder or just a flop.
The articles are summarized according to my submission date for this specific article.

By:
Stig Kristoffersenl

Technology>
Cell Phonesl
Jun 29, 2008
lViews: 926

Intelligence Collection Management

Collection Disciplines Main article: List of intelligence gathering disciplines See individual articles on major collection disciplines

By:
dpdol

Business>
Business Opportunitiesl
Sep 02, 2010

Jumping on the Linux POS (Point of Sale) Bandwagon

In a never ending battle to ease costs, many restaurant and hospitality operators today are taking a closer look at Linux POS solutions when sourcing out a new POS system for their establishments.

The reason why interest in POS software for Linux has grown in recent years is simple; Linux, as an operating system, is more cost effective, flexible, and allows for greater freedom of choice in software than more mainstream operating systems.

By:
Derek Meadel

Computers>
Softwarel
Jul 14, 2009
lViews: 571
lComments: 1

Multi-user Vs Client Server Application

here is no denying the fact that the server is a multi-user computer where there is no unusual hardware prerequisite that turns a computer into a server and as such the hardware platform needs to be preferred based on application demands and financial stringency. Servers for client/server applications work unsurpassed when they are configured with an operating system that supports shared memory, application isolation, and preemptive multitasking.

By:
Kh. Atiar Rahmanl

Computers>
Information Technologyl
Aug 18, 2007
lViews: 943
lComments: 1

Second Life

History This section needs additional citations for verification. Please help improve this article by adding reliable references. Unsourced material may be challenged and removed

By:
erenberl

Business>
Industriall
Sep 03, 2010

Software Programs- Automate Your Business

The gamut of available software development services has proved one thing for sure is that the software development industry hasn’t shown any sign of slowing down even after performing the big action.

By:
Arun Kumarl

Computers>
Softwarel
Nov 18, 2010

5 Tips for Choosing eDiscovery Software

With the rise in the number of corporate investigations, lawsuits and regulatory audits, companies and organizations often chooses to retain almost every business record since nobody knows for sure what might be useful in the future as proof for litigation.

By:
ajaxl

Computers>
Softwarel
Nov 18, 2010

Share Your Thanksgiving Recipes Video with Video Converter/Video Converter for Mac

Are you ready for the coming Thanksgiving Day? And have you get some wonderful Thanksgiving recipe ideas? If yes, why not share your genius ideas with others through videos? This article will talk about sharing Thanksgiving recipes video with Leawo video converter

By:
zengkerryl

Computers>
Softwarel
Nov 17, 2010

Repair Pc Registry Using Registry Cleaner Software

Your PC registry contains all the information relating to updates, installations of programs, removal of programs etc. Every instance of these events is logged in your computer’s registry. To repair PC registry errors, you can choose to do it manually or you could opt for registry cleaning software. Discover the secrets of how to repair your PC registry here easily…

By:
Austin Porterl

Computers>
Softwarel
Nov 17, 2010

The Fastest Way to Fix Registry Problems

The personal computer is pretty much commonplace in our everyday life, we simply could not live without it and also nearly everyone has at least one, which is why it’s actually so surprising in which so few people realize what’s actually going about behind their pc, and how to resolve problems that unavoidably occur when they are utilizing it.

By:
JoshClementsl

Computers>
Softwarel
Nov 17, 2010

Why one should Perform Code Maintenance?

Although many people don’t consider code maintenance to be design work, our experience is that the way maintenance is carried out can make or break the security of a design.

By:
Kamlesh Patell

Computers>
Softwarel
Nov 17, 2010

How Do You Shop For System Backup Software?

Shopping for system backup software for your organization is one of the most important steps you can take to safeguard your company’s vital data files. So many important data files are saved on your company’s computers and servers, from payroll data and accounting information to personal client information, projections for future business, future business concepts, and so much more.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

How Do You Get the Best Deal on System Backup Software?

Anytime you are making a major purchase of IT related items, you certainly want to pay attention to cost. A company’s IT budget has a tendency to be one of the biggest expense areas on any company budget and IT managers are forced to do what they can to cut down on expenses. As you are shopping for system backup software for your organization, it stands to reason that you want to spend some time shopping around for the best deal on your solution.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

Open Source Versus Closed Source Software

This artical discusses the dilemma that whether or not all software vendors will need to open up their source code to remain in business, when the market of open source software is catching up really well.

By:
Rajkumar Singh Tomarl

Computers>
Softwarel
Oct 10, 2009

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box

Rajkumar Singh Tomar has 1 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

]]>

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Cisco-Linksys WRT54GL Wireless-G Broadband Router (Compatible with Linux)

  • Linux-based Internet-sharing Router with built-in 4-port Switch and Wireless-G Access Point
  • Shares a single Internet connection and other resources with Ethernet wired and Wireless-G and -B devices
  • Includes four Fast Ethernet ports for your wired computers and devices
  • Wireless signals are protected by industrial-strength WPA2 encryption, and your network is protected from most known Internet attacks by a powerful SPI firewall

The Linksys Wireless-G Broadband Router is really three devices in one box. First, theres the Wireless Access Point, which lets you connect both screaming fast Wireless-G (802.11g at 54Mbps) and Wireless-B (802.11b at 11Mbps) devices to the network. Theres also a built-in 4-port full-duplex 10/100 Switch to connect your wired-Ethernet devices together. Connect four PCs directly, or attach more hubs and switches to create as big a network as you need. Finally, the Router function ties it all toge

Rating: (out of reviews)

List Price: $ 79.99

Price: $ 59.99

Open Source Development

Open Source Development

Free Online Articles Directory

Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via

Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Programming > Open Source Development

Open Source Development

Edit Article |

Posted: Dec 30, 2009 |Comments: 0

|

Share

]]>

Syndicate this Article

Copy to clipboard

Open Source Development

By: Digisha Modi

About the Author

Biztech Consultancy is a professional web development company providing website design and website development services like php development, cakephp development, magento customization, SugarCRM customization, NetOffice customization, Ecommerce Application development, Third Party API integration, content management system and other software development services at an affordable rate to clients all over the world.

(ArticlesBase SC #1642949)

Article Source: – Open Source Development





In the world of web development open source products are widely used to create dynamic websites and other business promotion online tools. In the global online business environment many web development companies offer the professional services for the development of online business tools. Listing up some popular open source products includes, Joomla, Mambo, Drupal, CakePHP, Oscommerce, Ruby on Rails, etc. Most of the products are used by the developers for the dynamic presentation of businesses from various industries in customized manner in form of websites, templates and other online presentation tools.

Now most of people as well web developers recommend for open source software for Ecommerce website development.  Open source soft wares are very easy to use. The ease of using open source software attracts web developers to use it. Open source software helps to make a better Ecommerce shopping cart website. The main and important features like shipping modules and payment gateways for Ecommerce website are developed using open source software.

Open Source Software are free applications released under special licensing terms where the core coding is viewable and able to be edited to suit the needs of the user. Open Source applications cover a myriad of uses – from entertainment to enterprise ecommerce. Open source software like Joomla, magento and osCommerce are very popular and widely used. They are content management system and it maintains track of every piece of content including music, videos, text, widgets, images and documents.

With open source software, Ecommerce website and e-commerce shopping cart website development gets very easy. Open source software provides hassle free programming and debugging. The source code can be accessed without paying money. As all open source software codes are open to do to do any type of editing, so web developers feel free to do editing and they can have wide range of choices to edit codes.

Nowadays, most social networking sites and online shopping websites take the advantage of open source development solutions. Sites such as Yahoo and Amazon stores are opting for open source applications software to make it user-friendly and simple for online shoppers. Open Source content management systems have helped web development companies to concentrate on important activities. The future of web development certainly relies on such technologies.

Open source customization is always guaranteed to give you wonderful results. At the end of the day, it boils down to you choosing the right application, and getting it properly implemented with the help of suitable expertise. Open source customization can help you build a highly interactive and innovative website (a modular one that gives you options to upgrade), with a website design that is both stylish and affordable.

At Biztech Consultancy an India based web development company, we offer open source solutions like open source customization, open source development, open source implementation, open source integration at competitive price. Our skilled and efficient developers are expert in designing templates, creating skins, installing open source solutions, installing their modules, doing design integration and also make custom modification to cater varied range of client needs.

Retrieved from “http://www.articlesbase.com/programming-articles/open-source-development-1642949.html”

(ArticlesBase SC #1642949)

Digisha Modi -
About the Author:

Biztech Consultancy is a professional web development company providing website design and website development services like php development, cakephp development, magento customization, SugarCRM customization, NetOffice customization, Ecommerce Application development, Third Party API integration, content management system and other software development services at an affordable rate to clients all over the world.

]]>

Rate this Article

1
2
3
4
5

vote(s)
0 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/programming-articles/open-source-development-1642949.html

Article Tags:
open source application development, open source application development india, open source customization, open source framework application, open source solution

Related Videos

Related Articles

Latest Programming Articles
More from Digisha Modi

What is Open Source

In this top tech video you will learn what open source refers to in open source software. (00:54)

How to Understand Open Source Software Licenses

In this top tech video you will learn how to Understand Open Source Software’s different licenses (00:45)

How to Contribute to Open Source Software

In this top tech video you will learn how to contribute to open source software. (01:39)

How to Work With Others on Open Source Material

In this top tech video you will learn how to work with others when working on open source material, how to work with your own ideas and how to compromise. (00:58)

Ways to Contribute to Open Source Software

In this top tech video you will learn the various ways to contribute to open source material (02:05)

Dotnetnuke Dnn Development Module Cms Skins Developer

DotNetNuke wesite development DNN modules skins portal development services Hyderabad, India. Open sources Dot Net Nuke installation customization setup and developer.

By:
webmasterinfral

Advertising>
Graphic Designl
Jan 29, 2009
lViews: 220

Magento Custom Design Templates and Themes

Magento developers at offshore software development India has good experience on Magento customization and development based on the Zend framework. Magento is a new professional open-source eCommerce solution offering unprecedented flexibility and control. You can Control every facet of your store, from merchandising to promotions and more. There are no limits to creativity with Magento.

By:
Osd Indial

Computers>
Softwarel
Aug 19, 2008
lViews: 2,533

Outsource Php Development India

India is an offshore software development center, PHP MySQL development and MySQL Programming center. In India new challenges are accepted by well skilled PHP developers and programmers and they are also resolving them and moving ahead. For the PHP developers, open source codes are always available without any cost. Developers can use, manage and update the code. They are also editing, modifying the source code and then after they update these code.

By:
Rightway Solutionl

Computers>
Programmingl
Dec 18, 2007

Technical Knowledge to Look For in Indian Software Development Companies

India is not only popular for its rich culture and heritage but also popular for its software development activities. It is a fact that India is a super power in the IT sector and other related services. Many of the developing and developed countries from all over the world have relied upon India for their IT requirements, since India boast a global competence in the information technology sector.

By:
Harkirat Singh Bedil

Computers>
Softwarel
Oct 04, 2010

Technical Expertise to Look For in Software Development Company in India

All roads lead to India as far as software development activities are concerned. It is now a mere fact that India is the powerhouse of information technology and other allied services. Most of the developed as well as developing countries have shown faith on us to fulfill their IT requirements as we boast a worldwide competence in this sector. A software development company in India has wide-ranging expertise in different technologies and tools to come up with the right software solutions.

By:
Sanjayl

Computers>
Softwarel
Jul 29, 2010

How Can We Create Dynamic and Eye-Striking Application with PHP Development

PHP is a scripting programming language and an open source web development technology for providing developers to develop multiple web pages having dynamic contents for communicating with the databases.

By:
PHP Developmentl
Computersl
Oct 14, 2010

eCommerce Website Development with CMS – eGrove Systems

eCommerce is now one of the most important applications of internet. In the last few years a whole new world started in eCommerce. There are many eCommerce CMS are available in the market both freeware as well as commercial such as osCommerce, Zen Cart, Virtuemart, Magento, Xcart, PrestaShop, Ubercart, Product Cart etc. Also there is a list of eCommerce plug-ins for some generic CMS like Joomla, WordPress, Drupal, etc.

By:
eGrove Systemsl

Internet>
Web Designl
Apr 26, 2010

Offshore Software Application & Web Development Company

Offshore software application development companies help corporation in developed markets to experience important cost savings without compromising on the quality of the output. Now day’s globalized economy; companies have adopted a global attitude and find it sensible to get their processes managed from places where it can be done at the lowest cost with a similar degree.

By:
MOINl

Internet>
Web Designl
Dec 15, 2008
lComments: 2

Web Programming – Tip for Outsourcing Web Programming

Outsourcing web programming to Asian countries, especially to India is preferred by most developed countries because of high level of professionalism, quality output, reduction of cost, time and effort and timely delivery of projects. It remains cost effective compared to hire web programmer.

By:
Steve Irronl

Computers>
Programmingl
Nov 17, 2010

Nail Down Your Business The Affordable Way

All you need to do first is to welcome the new trend of commerce. Where is it? On the Internet. Get your own affordable business website and advertise today. Nail down your business the affordable way.

By:
Angela Paulal

Computers>
Programmingl
Nov 17, 2010

ASP.NET Development – Hire an Affordable ASP.NET Programmer

Today, ASP Net Programming language is very popular & ASP Net Programming is professional website development outsourcing Microsoft technology based language.

By:
Abhimanyu Sharmal

Computers>
Programmingl
Nov 17, 2010

Indian Web Development Agencies: Offering Quality Services at Cost Effective Rates

Who is responsible for creating such engaging and interesting kind of websites on all platforms? A web application development company that’s known to the world for smart software services again holds the answer for this question.

By:
Arun Kumarl

Computers>
Programmingl
Nov 17, 2010

Dot Net Development – The Absolute Solutions for Every Industry Need

The dot Net development service signifies the development of multiple web based applications through dot Net architecture. The dot Net architecture delivers a dependable, scalable and consistent environment for developing strong web applications.

By:
dot Net Developerl

Computers>
Programmingl
Nov 16, 2010

Visual Basic for Applications Programming / VBA macros – Three Horrible Traps, and How to Avoid Them

There are a huge number of ways in which you can create bugs in your macros in VBA (Microsoft’s Microsoft Office programming language: it stands for Visual Basic for Applications), but three stand out as being almost impossible to track down. Here are the 3 nightmare bugs – and how to avoid them ever occurring!

By:
AndyOwll

Computers>
Programmingl
Nov 16, 2010

Benefits of Offshore Outsourcing .Net Development Company

There are various advantages of using .Net development and is in fact one of the most used platforms and this article tells you exactly on what .Net is all about and its benefits

By:
James Konaryl

Computers>
Programmingl
Nov 16, 2010

PHP Development- Hire PHP Developer to Take Outsourcing Benefits

Everything is changing and so are the market trends. To keep up with them you have to change your business policies. Many companies have realized that with increasing costs and competition outsourcing is the best way out.

By:
Abhimanyu Sharmal

Computers>
Programmingl
Nov 16, 2010

Magento Ecommerce

Magento eCommerce Development is an incredibly advanced suite which enables you to have a shopping cart up and running in a very short time. Magento includes advanced reporting and analysis features which will increase your awareness of sales trends and other customer activity to enable you to tune your business for maximum efficiency. Its unique characteristics are unlimited flexibility, completely scalable architecture, professional and community support and smooth integration with 3rd party a

By:
Digisha Modil

Internet>
ECommercel
May 19, 2010

Magento Shopping Cart

Ecommerce is becoming a highly developed business all the time. And for running your online stores more powerfully Magento ecommerce Development can be the solution. Magento is a feature-rich open source eCommerce solution offering complete flexibility and control over the look, content, and functionality of your online shopping cart. Magento allows you to control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed.

By:
Digisha Modil

Internet>
ECommercel
Apr 24, 2010
lViews: 232

Facebook Development India

Facebook is the leading social network with the largest user base in the world.Facebook Applications are a sound way of reaching out to millions of probable customers and increasing your clientele. Engaging and custom Facebook applications draw a lot of user attention and can be effectively used to target your niche related audience. Facebook apps have a viral effect which further helps in enhancing your company’s image and reputation.

By:
Digisha Modil

Computers>
Programmingl
Apr 21, 2010

Python Application Development

Python is a dynamic object-oriented programming language that can be compared with Java and Microsoft’s .NET-based languages as a general-purpose substrate for many kinds of software development. It offers strong support for integrating with other technologies, higher programmer productivity throughout the development life cycle, and is particularly well suited for large or complex projects with changing requirements.

By:
Digisha Modil

Computers>
Programmingl
Jan 25, 2010

SugarCRM Module Development

Being an open source application, SugarCRM has a wide variety of plug-ins and modules which can be integrated with the basic SugarCRM application to enhance its functionality. Provided with a flexible architecture, it can easily be adapted and customized to meet individual requirements.

By:
Digisha Modil

Computers>
Programmingl
Jan 25, 2010
lViews: 438

Flash Website Design

Flash web design is a very versatile and popular method to add action to your web site. Flash is a magical tool that can make your website speak, dance and even laugh. This is what we say creating action and interaction through our professional flash development services India. At Biztech Consultancy, we are specializing in rich media Flash Web Design and Development. We Design highly creative web sites and multimedia using Adobe Flash, the professional standard for web and multimedia animation.

By:
Digisha Modil

Computers>
Programmingl
Jan 24, 2010

Effective Website Design

A website is like a show case, your visitors will be able to review your products and services and compare these with rivals with ease and comfort. They will not have to travel from store to store to compare quality and price before they make a purchase.

By:
Digisha Modil

Computers>
Programmingl
Jan 24, 2010

Ecommerce Website Design

An ecommerce website design and development is the best and effective way for promoting products and services of any business organization. A well-designed, optimized website stays visible on the Internet, attracting more and more targeted customers.

By:
Digisha Modil

Computers>
Programmingl
Jan 24, 2010

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box

Digisha Modi has 53 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

]]>

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Biztech Consultancy is a professional web development company providing website design and website development services like php development, cakephp development, magento customization, SugarCRM customization, NetOffice customization, Ecommerce Application development, Third Party API integration, content management system and other software development services at an affordable rate to clients all over the world.

NETGEAR RangeMax Wireless-N300 Gigabit Router with USB WNR3500L

  • 802.11n certified technology with Gigabit Ports for faster wired and wireless performance
  • ReadyShare provides fast and easy shared access to an external USB storage device
  • Open-source community website and development Partner program with downloadable applications, user guide, forums and blogs

Gigabit Switching with Wireless-N for Faster Network Performance, Wireless-N technology for faster wireless speeds and range, Four Gigabit Ethernet ports deliver ultra-fast wired connections, ReadyShare provides fast and easy shared access to an external USB storage device, Live Parental Controls powered by OpenDNS blocks unsafe internet content and applications, Broadband Usuage Meter ensures daily, weekly and monthly measurement of Internet traffic with customized alerts.Features: Multiple SSI

Rating: (out of reviews)

List Price: $ 148.33

Price: Too low to display

IBM ThinkPad R51 Pentium M 1.7GHz 512MB 40GB CDRW/DVD 14″ Ubuntu Linux Lenovo

  • IBM ThinkPad R51 Pentium M 1.7 GHz Notebook General Features:
  • Ubuntu Linux 8.04 Hardy Heron pre-installed Intel Pentium M 1.7 GHz processor 512 MB RAM
  • 40 GB hard drive CD-RW/DVD-ROM combo drive Integrated video
  • Integrated audio w/built-in speakers Integrated 802.11b Wireless LAN Integrated modem
  • Integrated Ethernet – By law, California shipments of this product are subject to an .00 Electronic Waste Recycling Fee

Mobile Power! This IBM ThinkPad R51 Notebook is powered with an Intel Pentium M 1.7 GHz processor and 512 MB RAM. This notebook includes a CD-RW/DVD-ROM combo drive and a 40 GB hard drive with Ubuntu Linux pre-installed! Check your email via the integrated modem, set up a high speed network using the integrated Ethernet or connect to a wireless network with the 802.11b Wireless LAN Technology! Integrated audio, video and a 14-inch TFT LCD display are also included! Simplify your mobile computing

Rating: (out of reviews)

List Price:

Price:

Linux and the GNU Project

Linux and the GNU Project

Free Online Articles Directory

Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via

Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Operating Systems > Linux and the GNU Project

Linux and the GNU Project

Edit Article |

Posted: Nov 08, 2010 |Comments: 0

|

Share

]]>

Ask a question

Ask our experts your Operating Systems related questions here…200 Characters left

Syndicate this Article

Copy to clipboard

Linux and the GNU Project

By: GLUG NIT Jamshedpur

About the Author

(ArticlesBase SC #3625685)

Article Source: – Linux and the GNU Project





Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called “Linux”, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.

There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine’s resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called “Linux” distributions are really distributions of GNU/Linux.

Many users do not understand the difference between the kernel, which is Linux, and the whole system, which they also call “Linux”. The ambiguous use of the name doesn’t help people understand. These users often think that Linus Torvalds developed the whole operating system in 1991, with a bit of help.

Programmers generally know that Linux is a kernel. But since they have generally heard the whole system called “Linux” as well, they often envisage a history that would justify naming the whole system after the kernel. For example, many believe that once Linus Torvalds finished writing Linux, the kernel, its users looked around for other free software to go with it, and found that (for no particular reason) most everything necessary to make a Unix-like system was already available.

What they found was no accident—it was the not-quite-complete GNU system. The available free software added up to a complete system because the GNU Project had been working since 1984 to make one. In the The GNU Manifesto we set forth the goal of developing a free Unix-like system, called GNU. The Initial Announcement of the GNU Project also outlines some of the original plans for the GNU system. By the time Linux was started, GNU was almost finished.

Most free software projects have the goal of developing a particular program for a particular job. For example, Linus Torvalds set out to write a Unix-like kernel (Linux); Donald Knuth set out to write a text formatter (TeX); Bob Scheifler set out to develop a window system (the X Window System). It’s natural to measure the contribution of this kind of project by specific programs that came from the project.

If we tried to measure the GNU Project’s contribution in this way, what would we conclude? One CD-ROM vendor found that in their “Linux distribution”, GNU software was the largest single contingent, around 28% of the total source code, and this included some of the essential major components without which there could be no system. Linux itself was about 3%. (The proportions in 2008 are similar: in the “main” repository of gNewSense, Linux is 1.5% and GNU packages are 15%.) So if you were going to pick a name for the system based on who wrote the programs in the system, the most appropriate single choice would be “GNU”.

But that is not the deepest way to consider the question. The GNU Project was not, is not, a project to develop specific software packages. It was not a project to develop a C compiler, although we did that. It was not a project to develop a text editor, although we developed one. The GNU Project set out to develop a complete free Unix-like system: GNU.

Many people have made major contributions to the free software in the system, and they all deserve credit for their software. But the reason it is an integrated system—and not just a collection of useful programs—is because the GNU Project set out to make it one. We made a list of the programs needed to make a complete free system, and we systematically found, wrote, or found people to write everything on the list. We wrote essential but unexciting (1) components because you can’t have a system without them. Some of our system components, the programming tools, became popular on their own among programmers, but we wrote many components that are not tools (2). We even developed a chess game, GNU Chess, because a complete system needs games too.

By the early 90s we had put together the whole system aside from the kernel. We had also started a kernel, the GNU Hurd, which runs on top of Mach. Developing this kernel has been a lot harder than we expected; the GNU Hurd started working reliably in 2001, but it is a long way from being ready for people to use in general.

Fortunately, we didn’t have to wait for the Hurd, because of Linux. Once Torvalds wrote Linux, it fit into the last major gap in the GNU system. People could then combine Linux with the GNU system to make a complete free system: a Linux-based version of the GNU system; the GNU/Linux system, for short.

Making them work well together was not a trivial job. Some GNU components(3) needed substantial change to work with Linux. Integrating a complete system as a distribution that would work “out of the box” was a big job, too. It required addressing the issue of how to install and boot the system—a problem we had not tackled, because we hadn’t yet reached that point. Thus, the people who developed the various system distributions did a lot of essential work. But it was work that, in the nature of things, was surely going to be done by someone.

The GNU Project supports GNU/Linux systems as well as the GNU system. The FSF funded the rewriting of the Linux-related extensions to the GNU C library, so that now they are well integrated, and the newest GNU/Linux systems use the current library release with no changes. The FSF also funded an early stage of the development of Debian GNU/Linux.

Today there are many different variants of the GNU/Linux system (often called “distros”). Most of them include non-free software—their developers follow the philosophy associated with Linux rather than that of GNU. But there are also completely free GNU/Linux distros. The FSF supports computer facilities for two of these distributions, Ututo and gNewSense.

Making a free GNU/Linux distribution is not just a matter of eliminating various non-free programs. Nowadays, the usual version of Linux contains non-free programs too. These programs are intended to be loaded into I/O devices when the system starts, and they are included, as long series of numbers, in the “source code” of Linux. Thus, maintaining free GNU/Linux distributions now entails maintaining a free version of Linux too.

Whether you use GNU/Linux or not, please don’t confuse the public by using the name “Linux” ambiguously. Linux is the kernel, one of the essential major components of the system. The system as a whole is basically the GNU system, with Linux added. When you’re talking about this combination, please call it “GNU/Linux”.

 

 

GLUG NIT Jamshedpur

 

Retrieved from “http://www.articlesbase.com/operating-systems-articles/linux-and-the-gnu-project-3625685.html”

(ArticlesBase SC #3625685)

GLUG NIT Jamshedpur -
About the Author:

]]>

Rate this Article

1
2
3
4
5

vote(s)
2 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/operating-systems-articles/linux-and-the-gnu-project-3625685.html

Article Tags:
glug, nit jsr, nit jamshedpur, glug nit jsr, jamshedpur, nit, ubuntu, linux, danish kanojia, lug, linux user group

Related Videos

Related Articles

Latest Operating Systems Articles
More from GLUG NIT Jamshedpur

A Beginner’s Guide to Ubuntu – #1 – Get to know The Linux OS Ubuntu

The world of Linux has been getting increasing attention. Versions of Linux, the “open-source” operating system, are being installed on computers from major makers like Dell and HP. Google’s Android mobile phone operating system is also a variation of Linux. Of all the versions of Linux available, Ubuntu is among the most polished and user-friendly Linux distros. It’s free and comes with an amazing amount of software. Join us as we take a look into the wonderful world of Linux with our introduc (01:55)

What is Linux?

Linux is a free and open source operating system that was first created in 1991 by Linus Torvalds. Today there are many different variations of Linux which are called “distributions.” Doc gives a brief introduction to Linux and tells you what you need to know. (01:27)

How to Force Install 32bit Apps on 64bit System

Ubuntu Linux 8.04 tutorials, this tutorial will show you how to force install 32bit apps on 64bit system. (03:49)

How to Disable System Beep Sound

Ubuntu Linux 8.04 tutorials, this tutorial will show you how to disable system beep sound. (00:59)

How to Get Started With Linux

Mike Agerbo welcomes Linux Enthusiast Gabe Fairbrother to the studio to talk about some popular Linux Operating Systems, why you might want to consider them and how to get started. (03:28)

Installing VLC and Real Player in Ubuntu

This document will provide you with step by step installation methods of Real Player and VLC Player… Enjoy!

By:
GLUG NIT Jamshedpurl

Computers>
Operating Systemsl
Nov 16, 2010

Monolithic Kernel v/s Micro Kernel

This Article explains the two main kernel architectures of operating systems: the monolithic kernel and the microkernel. Starting with an introduction about the term “kernel” itself and its meaning for operating systems as a whole, it continues with a comparison of benefits and disadvantages of both architectures, rounded up by a list of popular implementations.

By:
GLUG NIT Jamshedpurl

Computers>
Operating Systemsl
Nov 08, 2010

Slow Computer Fix – Stop your computer running Slow on You

The fact is that the number of homes around the world that have computers in them continues to grow. Eventually, every one of those computer will begin experiencing a number of problems such as slow computer performance, error screens and crashes. What’s worse is that your average person has no clue what they can do to help restore their computer to its former level of performance other than taking it to the local computer shop and have it looked over by a specialist for a slow computer fix.

By:
Brad Armstrongl

Computers>
Operating Systemsl
Nov 17, 2010

What is Linux?

Linux – the operating system for a GNU (pronounced Gnew) generation. It has been dubbed the alternative to Microsoft, the solution to all life’s problems and many other things that may or may not be true. But what is Linux, and should you care?

By:
Sandra Priorl

Computers>
Operating Systemsl
Nov 17, 2010

Computer Running Slow – How To Stop Your computer Slowing Down On You

It is not unusual that over a period of months or even weeks, the performance of your new computer becomes slower. You may be able to put up with it in the beginning, but soon you find yourself sitting there, waiting for programs to open or even to respond to commands. Let’s just say that you can hit the power button and walk away to have a cup of coffee or do something else till it comes up all the way.

By:
Brad Armstrongl

Computers>
Operating Systemsl
Nov 17, 2010

Get Rid Of Fast antivirus Malware – Rid Your Computer Of Malicious Software Now

When you are talking about malware that disguises Itself as antispyware or antivirus software you think of it being distributed via a pop up message or even automatically without your knowledge.

By:
Brad Armstrongl

Computers>
Operating Systemsl
Nov 16, 2010

Get Rid Of System Fighter – Rid Your Computer Of Malicious Software Now

The importance of PC security software is something that most people underestimate. In cases such as these it is not uncommon for someone to simply not have any protection what so ever, but should something happen and their computer gets compromised, then they are in a hurry to fix the problem before their computer is rendered useless or worse yet, their private information stolen

By:
Brad Armstrongl

Computers>
Operating Systemsl
Nov 16, 2010

Remove Cyber Security Malware – Get Rid Of This Fake Security Software Now

I am sure that at one time or another as you have been surfing the web or visiting your favorite web sites you have gotten a pop up message that tells you there are currently infected files on your computer or that harmful malware, spyware or other viruses have been located on your PC. This information can be rather scary, especially if you are one of the many people out there who has no PC security software protecting them or their private information.

By:
Brad Armstrongl

Computers>
Operating Systemsl
Nov 16, 2010

Slow Windows XP Start Up – How To Make your Windows XP Computer Faster

If your computer is running Windows XP and you are suffering from the slow windows XP startup issue, you can fix it. It can drive you crazy having to wait for your computer to start or load programs. Here are the symptoms you will encounter and the steps you need to take to fix them.

By:
Brad Armstrongl

Computers>
Operating Systemsl
Nov 16, 2010

Installing VLC and Real Player in Ubuntu

This document will provide you with step by step installation methods of Real Player and VLC Player… Enjoy!

By:
GLUG NIT Jamshedpurl

Computers>
Operating Systemsl
Nov 16, 2010

Installing VLC and Real Player in Ubuntu

This document will provide you with step by step installation methods of Real Player and VLC Player… Enjoy!

By:
GLUG NIT Jamshedpurl

Computers>
Operating Systemsl
Nov 16, 2010

Monolithic Kernel v/s Micro Kernel

This Article explains the two main kernel architectures of operating systems: the monolithic kernel and the microkernel. Starting with an introduction about the term “kernel” itself and its meaning for operating systems as a whole, it continues with a comparison of benefits and disadvantages of both architectures, rounded up by a list of popular implementations.

By:
GLUG NIT Jamshedpurl

Computers>
Operating Systemsl
Nov 08, 2010

Linux and the GNU Project

The following article provide a brief introduction to Linux and GNU Project

By:
GLUG NIT Jamshedpurl

Computers>
Operating Systemsl
Nov 08, 2010

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box

GLUG NIT Jamshedpur has 3 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

]]>

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Beginning Ubuntu Linux, Fourth Edition

  • ISBN13: 9781430219996
  • Condition: New
  • Notes: BRAND NEW FROM PUBLISHER! BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed

Beginning Ubuntu Linux, Fourth Edition is the update to the best–selling book on Ubuntu, today’s hottest Linux distribution. Targeting newcomers to Linux and to the Ubuntu distribution alike, readers are presented with an introduction to the world of Linux and open source community, followed by a detailed overview of Ubuntu’s installation and configuration process. From there readers learn how to wield total control over their newly installed operating system, and are guided through common

Rating: (out of reviews)

List Price: $ 39.99

Price: $ 7.20

Android
by laihiu

How to Convert Video to Android Phone Format

How to Convert Video to Android Phone Format

Free Online Articles Directory

Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via

Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Software > How to Convert Video to Android Phone Format

How to Convert Video to Android Phone Format

Edit Article |

Posted: Oct 20, 2010 |Comments: 0

|

Share

]]>

Ask a question

Ask our experts your Software related questions here…200 Characters left

Related Questions

Hi, Now i have a software which called AVCHD Video Converter, does its function simolar to Flip Video Converter? And is it reliable?
I converted an .mts file to .avi using OJOsoft’s total video converter. It worked, but when i play the file it’s in slow motion. Audio works and is normal speed. Help?
Can this display video during video calls from my mobile phone i.e. act as an alternative screen
I bought Nova n800 and by mistake i format phone’s internal memory but i got backup for this. Can any one let me know how to upload backup on phone memory again or Any contact for Nova Support ?

Syndicate this Article

Copy to clipboard

How to Convert Video to Android Phone Format

By: softmasters

About the Author

(ArticlesBase SC #3515985)

Article Source: – How to Convert Video to Android Phone Format





Android phone is famous for running multiple applications at the same time, but it supports relatively few video formats (only supports H.263, H.264 AVC, MPEG-4 SP video format). So what if to play AVI, Xvid, DivX, MKV, WMV, RM, FLV, SWF, ASF, MPG, MOV, MPEG, HD, MTS, M2TS, and TS on your Android phone like Samsung i7500, Samsung Galaxy, HTC Hero, HTC Legend, HTC Desire HD, HTC Wildfire, Motorola Droid, Motorola Flipout, Sony Ericsson Xperia X10, LG Ally and etc?

If fact, it is very easy to do it so long as you own the professional Android Converter-Bigasoft Total Video Converter.

Bigasoft Total Video Converter, as a professional Android Converter, can easily convert video to Android supported format. No matter what video format you have like AVI, Xvid, DivX, MKV, WMV, RM, FLV, SWF, ASF, MPG, MOV, MTS, M2TS, and TS, the professional Android Video Converter is able to convert them to Android phone video format. Moreover, the ideal Android Converter also can serve as Android Audio Converter to convert any audio format to Android phone supported audio format or to extract audio from video and then save as Android phone supported audio format.

The following is a step by step guide on how to convert video to Android phone format. This guide is also applied to converting audio to Android supported format.

Step 1 Run Android Converter

Free download the professional Android Converter – Bigasoft Total Video Converter (Windows Version ,Mac Version ) install and run it.

http://www.bigasoft.com/total-video-converter.html

Step 2 Import video to Android Converter

Click the “Add File” button to import your video which you want to play on Android phone. Or simply drag and drop video to the Android Converter.

Step 3 Set Android phone format

Click the drop-down button on the right side of the “Profile” button to select Android phone format like Gphone MPEG4 Video (*.mp4) .

Step 4 Customize (Optional)

The ideal Android Converter also provides some advanced functions for you to edit your video before converting the video to Android phone format.

Trim” function is for you to select the clips you want to convert.

Crop” function is for you to cut off the black edges of the original movie video and watch in full screen on your Android phone.

Preference” function is for you to set output effects, image type, CPU usage and action after conversion done.

Settings” function is for you to set parameters of your output files such as frame rate, resolution, channels, sample rate, video /audio codec, video/audio bitrates, etc.

You can also join several chapters into one by checking “Merge into one file” box.

You can drag and drop the folder where your video files are in to the Android Converter by checking “Copy Folder Structure” box.

You can output the converted video to source folder by checking “Output to Source Folder “.

Step 5 Convert video to Android phone format

Click the “Start” button to finish convert video to Android format.

Step 6 Transfer the converted video to Android phone

Connect Android phone to your PC or Mac, then transfer the converted video to Android phone.

Tips

What is Android? Android is a mobile operating system initially developed by Android Inc., a firm purchased by Google in 2005. Android is an open source mobile phone platform based on the Linux operating system. As a flagship participant in the Open Handset Alliance (OHA), Android operating system can be installed by all the members from the Open Handset Alliance including Google, HTC, Dell, Intel, Motorola, Qualcomm, Texas Instruments, Samsung, LG, T-Mobile, Nvidia, and Wind River Systems and more.

Android phones Android phones refer to phones that use Android as a mobile operating system including HTC, Samsung, Motorola, LG, Sony Ericsson, Acer Inc, Garmin, HKC, Dell, Huawei, Lenovo, Pantech and more. Usually, Android phones support H.263, H.264 (in 3GP or MP4 container), and MPEG-4 SP video format. If you want to play AVI, Xvid, DivX, MKV, WMV, RM, FLV, SWF, ASF, MPG, MOV, MPEG, MPG, HD, MTS, M2TS, TS in Android phone, you need to convert them to Android phone format like MP4, 3GP.

Why choose Android phone Android phone includes various phone models, and different phone model has its specific features. But they also have common features which make Android phone more competitive.
Android phone can run multiple apps at the same time whether they are system apps or apps from the Android Marketplace. At this respect, Android phone is even more competitive than iPhone OS which does offer limited multitasking, but only allows native applications such as Mail, iPod and Phone to run in the background.

 


Retrieved from “http://www.articlesbase.com/software-articles/how-to-convert-video-to-android-phone-format-3515985.html”

(ArticlesBase SC #3515985)

softmasters -
About the Author:

]]>

Rate this Article

1
2
3
4
5

vote(s)
0 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/software-articles/how-to-convert-video-to-android-phone-format-3515985.html

Article Tags:
convert video to android, android converter, video to android, android phone format, video to android converter, android phone, android format, android supported format, android phone video format

Related Videos

Related Articles

Latest Software Articles
More from softmasters

YouTube Has a New Video Editor CNET Loaded 06/16/2010

We get a look at the lens on the Altek Leo camera phone, New York commuters may be getting free Wi-Fi, and YouTube now has a cloud-based video editing tool. (01:39)

YouTube for the Boob Tube CNET Loaded 07/08/2010

T-Mobile and Sprint get new Android phones, Time restricts its free online content, and YouTube launches Leanback for viewing videos on your TV. (02:39)

Facebook Blocks Twitter Following Feature CNET Loaded 06/28/2010

Facebook admits to blocking twitter following application, Samsung launches a new line of Galaxy-S phones, Amazon enables audio and video in the Kindle app, and Google may try its hand at social networking–again. (02:19)

Google Docs coming to Android, iPad CNET Loaded 09/21/2010

The most versatile video player comes to the iPad, Twitter users would be wise to avoid sketchy URLs, and Google’s Docs suite will soon be available for Android devices and the iPad. (02:07)

Using PixelPipe on Your Android Phone

PixelPipe is a cool online service for sharing photos, videos, text and more. We love it so it stands to reason, we want it on our Android handsets as well. Michael “Doctor File Finder” Callahan offers a guided tour of PixelPipe on Android. (01:53)

Moto new Flipout review and how to enjoy DVD/Video with Motorola phone

Moto new Flipout review and how to enjoy DVD/Video with Motorola phone .

By:
thanksdayl

Computers>
Programmingl
Jul 06, 2010

New member of Android: Acer mobile phone series reviews

New member of Android: Acer mobile phone series reviews

By:
thanksdayl

Computers>
Computer Forensicsl
May 07, 2010

DVD to Android phone converter: Help you play DVD Movies on HTC Hero/Dream/Magic/Droid Eris or Motorola Droid

This article is about Ripping movies DVD to mobile phone which is built-in Android platform, such as Motorola droid, HTC Hero/Dream/Magic/Droid Eris and Google phone ‘Nexus one’

By:
Rushrushl

Advertising>
Multimedial
Dec 27, 2009
lViews: 537

How to convert DVD/Video to Android phone MP4, AVI, WMV, MP3, etc

How to convert DVD/Video to Android phone MP4, AVI, WMV, MP3, etc.

By:
coolspringl

Computers>
Softwarel
Aug 04, 2010

How to watch DVDs on popular Android phone: HTC Hero/Dream/Magic/Droid Eris?

Android handset is gaining since Google’s release of Android OS. In this article you will get the easy way to watch DVD movies on Android phone (HTC Hero/Dream/Magic/Droid Eris, etc) to extend your Android phone.

By:
Herb368l

Computers>
Softwarel
Dec 31, 2009

How to enjoy DVD/Video with devices of WM(WP7), Nokia Symbian, iPhone OS and Android

How to enjoy DVD/Video with devices of WM(WP7), Nokia Symbian, iPhone OS and Android

By:
coolspringl

Computers>
Softwarel
Sep 02, 2010

How to Download DVD Movie to Andorid Phone (Droid, nexus one, htc desire/hero, samsung captivate…)

As a powerful DVD to Android Converter, Wondershare DVD Ripper platinum make it easy to Put/Get DVD Movies to android phone Motorola Droid(2/X), Nexus one, HTC desire/hero/magic/incredible, samsung phone… fast and losslessly

By:
utterguyl

Arts & Entertainment>
Moviesl
Aug 19, 2010
lViews: 101

MPEG2 Converter – Convert MPEG2 to MOV/MP4/WMV/AVI/FLV/MKV

This article will introduce two ways to play MPEG2 in QuickTime in addition to iTunes, iPod, iPhone, Front Row, iPad, Microsoft Media Player, BlackBerry, Android Phone and more.

By:
softmastersl

Computers>
Softwarel
Oct 29, 2010

Why one should Perform Code Maintenance?

Although many people don’t consider code maintenance to be design work, our experience is that the way maintenance is carried out can make or break the security of a design.

By:
Kamlesh Patell

Computers>
Softwarel
Nov 17, 2010

How Do You Get the Best Deal on System Backup Software?

Anytime you are making a major purchase of IT related items, you certainly want to pay attention to cost. A company’s IT budget has a tendency to be one of the biggest expense areas on any company budget and IT managers are forced to do what they can to cut down on expenses. As you are shopping for system backup software for your organization, it stands to reason that you want to spend some time shopping around for the best deal on your solution.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

Who Needs System Backup Software?

Take a moment to think about how many different files you have opened, altered, and saved over the course of the day today, as well as how many new files you created today. Now take a moment to consider when the last time was that you performed a data backup of your files, and when the time was before that. The fact is that you do a tremendous amount of work on your computer each and every day, and you simply must take an effort to backup that data on a regular basis.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

How to Choose the Right System Backup Software

As an IT manager or the owner of a small business, choosing the right system backup software should be something that you are constantly on top of. Because technology changes so fast and new products are always coming out, it is important that you keep up with advances in backup technology to ensure that your computers and network are always recoverable if something happens to them.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

System Backup Software: Insurance for Your Data

As a company owner, you probably have insurance on your business, your building, your vehicles, and your employees. You personally have life insurance, medical insurance, and insurance in case you are hurt or can’t work. One area of a business that is rarely insured is the information that it holds, yet this is one of the most important assets of any business. By having system backup software running and ready to go, you will always be prepared for anything.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

The Benefits of Using PC Backup Software

In the world of business, you want to cut costs where you can. After all, it’s pretty basic business knowledge that tells you that your company income minus its expenses are profit, so you do what you can to cut expenses and therefore boost your profits. So often, however, companies cut expenses on important tools such as PC backup software only to realize their mistake later.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

What Features Are Critical in PC Backup Software?

Many business owners feel obligated to cut costs where they can in order to increase their net profits, and this cost-cutting mentality likely carries over to the selection of PC backup software, too. However, there are certain things in life that you don’t want to go bargain hunting for, and this definitely applies to your data backup program. You quite simply need to make cost a secondary consideration and the features of the program a primary concern.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

How Does PC Backup Software Work for Your Company?

When you are looking at the cost of PC backup software, the thought inevitably crosses your mind that you can save some cash by running your backup events on your own. After all, this software runs a backup event that you could very easily perform on your own at any time, right? Well, this is correct except very few busy professionals make it a critical priority to perform their backups on a regular basis.

By:
Carla Kaplanl

Computers>
Softwarel
Nov 17, 2010

Scariest Halloween Music, Halloween Ringtones for iPhone / BlackBerry

This article provides free websites for scariest Halloween music, and offers big discount for ringtone maker for iPhone and BlackBerry.

By:
softmastersl

Computers>
Programmingl
Oct 29, 2010

MPEG2 Converter – Convert MPEG2 to MOV/MP4/WMV/AVI/FLV/MKV

This article will introduce two ways to play MPEG2 in QuickTime in addition to iTunes, iPod, iPhone, Front Row, iPad, Microsoft Media Player, BlackBerry, Android Phone and more.

By:
softmastersl

Computers>
Softwarel
Oct 29, 2010

Halloween Marvelous Treats – All-in-One Video Converter for Mac 40% OFF

Bigasoft all-in-one video converter bundle includes Bigasoft Total Video Converter for Mac and Bigasoft DVD Ripper for Mac. It normally costs , now only with .9 for Halloween at 40% discount.

By:
softmastersl

Computers>
Softwarel
Oct 28, 2010

Free iPhone ringtone maker/creator is waiting for you!

Free iPhone ringtone maker is available during Halloween, just hurry up to get one to set your spooky Halloween music as iPhone Halloween ringtone with this free yet powerful iPhone ringtone creator.

By:
softmastersl
Computersl
Oct 28, 2010

How to Convert Video to Android Phone Format

Convert video to Android phone format 3GP, MP4, MP3 from AVI, Xvid, DivX, MKV, WMV, RM, FLV, SWF, MPG, MOV, HD, MTS, M2TS, TS and more. It’s never so easy.

By:
softmastersl

Computers>
Softwarel
Oct 20, 2010

Play MKV in all kinds of media players,portable players and YouTube

Usually, MKV files can only play on certain players like VLC media player. Have you ever thought to play MKV files on all kinds of media players or portable devices or YouTube? If so, continue read this article, and you will find the answer.

By:
softmastersl

Computers>
Softwarel
Oct 13, 2010

Video Conversion Never So Easy with Bigasoft Video Converter Software

Bigasoft Total Video Converter introduces folder video conversion and output video to source folder. It can handle large quantities of video files in one click

By:
softmastersl

Computers>
Softwarel
Oct 12, 2010

AVI to iMovie, how to import AVI to iMovie?

When trying to import AVI from video camera like Sony, Samsung, RCA, Panasonic, Canon, Flip Mino etc to iMovie, you may often fail to import AVI to iMovie. Do you really have no idea to successfully import AVI to iMovie? Yes, you do with the help of Bigasoft AVI to iMovie Converter for Mac

By:
softmastersl

Computers>
Softwarel
Oct 10, 2010

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box

softmasters has 23 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

]]>

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Related Android Articles

Admin - Netzwerk & Security

Price: $84.85

Easy Linux - Standard Abo

Price: $53.82

Linux Magazine - France C-W Misc

Price: $154.07

Linux Intern

Price: $70.83

Linux Magazine - France C-W Linux Magazine - Hors Series & M

Price: $206.82