Showing posts with label linux top. Show all posts
Showing posts with label linux top. Show all posts

Monday, May 13, 2013

How to count duplicate the lines of a file by using Linux Shell Programming?

Q. Hi,

I'm new to linux and to shell programming. I have an assignment to create a shell script that shows all the folders, sub folders and files of the current directory. LS does this. But I must count how many duplicate lines each file has, and show the line that is repeated the most times in each file.

I really have no idea where to start. How can I read/compare lines within a file?

Thanks in advance!

A. grep . anyFile | sort | uniq | wc
grep . anyFile | sort | wc

If a line is repeated, the output of the top grep code will be less than the bottom one.

How do I download a version of Linux without deleting my windows xp?
Q. I want to download a version of Linux without erasing windows xp. Can someone please give me step-by-step information on how to do this.(If you are familiar with Linux could you please recommed the best version). Thanks.

A. Options to try Linux:

(1) Download what's called a "Live CD". That's a bootable CD which contains the Linux of your choice set up so that it runs directly off the CD and doesn't change your hard drive at all.
* pro: Easiest option to try it out and install it.
* con: Can be slow to boot and run, so if you want to experiment with Linux for days or weeks you might find using a Live CD tedious. Usually can't save anything because you can't write to the hard drive.

(2) Make your system dual-boot. Most Linux distributions allow you to split your hard drive by shrinking the space devoted to your "C:" drive and install Linux in the free space.
* pro: Get the best performance, as you're running directly on the hardware and reading and writing to a hard drive instead of a CD.
* con: Requires a permanent change to your hard disk and a modification of your Windows partition, introducting the possibility of a failure or glitch in this process ruining your Windows partition (I suggest you back up your drive or at least important files when you do this). Also, normally the Windows partition is invisible to Linux and vice versa (though there are tools to remedy this to varying degrees). If you switch a lot between OS'es, can be time consuming to reboot all the time.
* when it's best: Best option when you've decided to use Linux long term and it's the best performer. Also best if you plan to use the computer intensively and for long periods of time.


(3) Use an emulator. One is vmware, but you can find other options. Generally, emulators are programs that emulate a whole x86 computer in software. However, installing directly to your hard drive, you create a file that the emulator uses as a virtual hard disk and install onto that.
* pro: Requires no hardware changes. Can run both OS'es concurrently, so you can do things like cut and paste between the two systems, or even use networking. A good compromise between Live CD's in that it's faster than a live CD, slower than running directly on the hardware.
* con: Can be slower than running than on the native hardware. Some devices may not work properly running under emulation.
* when it's best: This option works best for folks who wish to use Windows mostly and Linux lightly, switching between the two, as the switching effort is next to none. Also best for short-term trials of one or more Linux distributions, as setting up different VM's is very easy.

(4) Loadlin is a system to let you install and run Linux on top of a FAT16 or FAT32 partition (default for Windows 98 and earlier; NTFS is default for NT, XP and later). Technically, you're dual booting and have to reboot to switch OS'es, but you don't need to repartition your drive:
* pro: Avoids the need to repartition
* con: Not an option for most people running XP, unless their drive is already formatted for FAT32.

As for favorite distribution, my current favorite is called "Ubuntu", derived from Debian (see link below). Debian is one of the best distributions but can be a complicated and intimidating setup for someone new to Linux. Ubuntu is a commercially supported derivative with a GUI installer, a friendly and powerful repartitioner, lots of popular and useful utilities built-in, and huge free online repositories available with even more software which can be installed automatically from a friendly GUI-based program.

Others are:

* Fedora Core, based on Red Hat Linux. Perhaps the most widely known and popular distribution in my experience. Broad support in terms of hardware and many programs both free and commercial are built to run on Red Hat, everything from Oracle Databases to freeware media players. Also offers an online package installation system like Debian and Ubuntu, which goes by the name of "yum" (never used it myself though).

* Slackware: A favorite of many Linux veterans. While it lacks the flashiness of more recent entrants like Red Hat, has a reputation for being a solid Linux distribution. In my experience I love setting up servers under slackware because I've had Slackware boxes run longer without crashing than anything else. Many Linux experts like it because of the simplicity with which one can configure it from the command line. However, as it's supported by a very small crew it evolves more slowly than others. An advantage or liability depending upon your point of view.

For others, shop around by visiting DistroWatch. There are many more options, too many to list. Everything from full-featured distributions which have every program under the sun to highly specialized distributions for everything from building parallel compute clusters (Parallel Knoppix, scientific Linux) to building video player boxes (GeexBox)

All the best, and have fun!!

How can I access to an internet connection on linux using the wireless?
Q. I want to access to a wireless connection in a PC with linux (ubuntu 10.04). But I can't find any connection. Lately I realized that the wireless light on my computer (fujitsu Siemens) is turned off. How can I turn it on and access to an internet connection by wireless.

A. Weeks after weeks ppl keep asking this question. The answer is because you are using a free linux that mostly relies on opensource technology and insanely restrictive laws in the USA do not allow to integrate proprietary drivers in open source technology.

Ubuntu is a cute little linux but a nightmare for ppl using wifi, forget about installing the drivers yourself unless you are a programmer. Solution? use a top notch linux like Mandriva Power pack or SUSE linux entreprise they cost money but u pay for windows don t u?

You could always try your luck with linux miint it contains some proprietary drivers but has many bugs we found and translation of many applications in English or other languages is not always proper.

RICK



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Wednesday, May 1, 2013

How to capture C and CPP files in the linux operating system?

Q. I am new to linux and have been trying to figure this out forever for a homework assignment! I am supposed to use appropriate linux commands to capture all "C or CPP" files in the linux operating system and make a list of the files. I am using Xubuntu. I am a beginner and could use any advice! Thanks!

A. What does it mean to capture a file??

If you mean to find the files and list the results, use the 'find' command to search for *.c and *.cpp files in the whole system. You will get the result on the screen, and you can redirect the output to a file.

To find *.c files:
find / -name *.c

To find *.cpp files:
find / -name *.cpp

Explanation: the "/" means to start the search at the top of the file system, meaning that the search will include all the system. The "-name" means to search by name, and "*.c" is the file pattern you want to find.

To redirect the output, use "> output_file" for example:
find / -name *.cpp > output_file

Hope it helps. See the manual page 'man find' to learn more.

How to count duplicate the lines of a file by using Linux Shell Programming?
Q. Hi,

I'm new to linux and to shell programming. I have an assignment to create a shell script that shows all the folders, sub folders and files of the current directory. LS does this. But I must count how many duplicate lines each file has, and show the line that is repeated the most times in each file.

I really have no idea where to start. How can I read/compare lines within a file?

Thanks in advance!

A. grep . anyFile | sort | uniq | wc
grep . anyFile | sort | wc

If a line is repeated, the output of the top grep code will be less than the bottom one.

How do I download a version of Linux without deleting my windows xp?
Q. I want to download a version of Linux without erasing windows xp. Can someone please give me step-by-step information on how to do this.(If you are familiar with Linux could you please recommed the best version). Thanks.

A. Options to try Linux:

(1) Download what's called a "Live CD". That's a bootable CD which contains the Linux of your choice set up so that it runs directly off the CD and doesn't change your hard drive at all.
* pro: Easiest option to try it out and install it.
* con: Can be slow to boot and run, so if you want to experiment with Linux for days or weeks you might find using a Live CD tedious. Usually can't save anything because you can't write to the hard drive.

(2) Make your system dual-boot. Most Linux distributions allow you to split your hard drive by shrinking the space devoted to your "C:" drive and install Linux in the free space.
* pro: Get the best performance, as you're running directly on the hardware and reading and writing to a hard drive instead of a CD.
* con: Requires a permanent change to your hard disk and a modification of your Windows partition, introducting the possibility of a failure or glitch in this process ruining your Windows partition (I suggest you back up your drive or at least important files when you do this). Also, normally the Windows partition is invisible to Linux and vice versa (though there are tools to remedy this to varying degrees). If you switch a lot between OS'es, can be time consuming to reboot all the time.
* when it's best: Best option when you've decided to use Linux long term and it's the best performer. Also best if you plan to use the computer intensively and for long periods of time.


(3) Use an emulator. One is vmware, but you can find other options. Generally, emulators are programs that emulate a whole x86 computer in software. However, installing directly to your hard drive, you create a file that the emulator uses as a virtual hard disk and install onto that.
* pro: Requires no hardware changes. Can run both OS'es concurrently, so you can do things like cut and paste between the two systems, or even use networking. A good compromise between Live CD's in that it's faster than a live CD, slower than running directly on the hardware.
* con: Can be slower than running than on the native hardware. Some devices may not work properly running under emulation.
* when it's best: This option works best for folks who wish to use Windows mostly and Linux lightly, switching between the two, as the switching effort is next to none. Also best for short-term trials of one or more Linux distributions, as setting up different VM's is very easy.

(4) Loadlin is a system to let you install and run Linux on top of a FAT16 or FAT32 partition (default for Windows 98 and earlier; NTFS is default for NT, XP and later). Technically, you're dual booting and have to reboot to switch OS'es, but you don't need to repartition your drive:
* pro: Avoids the need to repartition
* con: Not an option for most people running XP, unless their drive is already formatted for FAT32.

As for favorite distribution, my current favorite is called "Ubuntu", derived from Debian (see link below). Debian is one of the best distributions but can be a complicated and intimidating setup for someone new to Linux. Ubuntu is a commercially supported derivative with a GUI installer, a friendly and powerful repartitioner, lots of popular and useful utilities built-in, and huge free online repositories available with even more software which can be installed automatically from a friendly GUI-based program.

Others are:

* Fedora Core, based on Red Hat Linux. Perhaps the most widely known and popular distribution in my experience. Broad support in terms of hardware and many programs both free and commercial are built to run on Red Hat, everything from Oracle Databases to freeware media players. Also offers an online package installation system like Debian and Ubuntu, which goes by the name of "yum" (never used it myself though).

* Slackware: A favorite of many Linux veterans. While it lacks the flashiness of more recent entrants like Red Hat, has a reputation for being a solid Linux distribution. In my experience I love setting up servers under slackware because I've had Slackware boxes run longer without crashing than anything else. Many Linux experts like it because of the simplicity with which one can configure it from the command line. However, as it's supported by a very small crew it evolves more slowly than others. An advantage or liability depending upon your point of view.

For others, shop around by visiting DistroWatch. There are many more options, too many to list. Everything from full-featured distributions which have every program under the sun to highly specialized distributions for everything from building parallel compute clusters (Parallel Knoppix, scientific Linux) to building video player boxes (GeexBox)

All the best, and have fun!!



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Saturday, April 20, 2013

How to add a picture on top of my video in Windows Live Movie Maker?

Q. I recorded a video, and I want to put my logo on top of the video, and it be their the whole time the video is running. Is this possible?

A. In the apps I use (all Linux), you just make a transparent-background logo and put it on a separate track to be overlaid on the other tracks. You can fade it in and out too.

What is the linux command to list every file on the computer ?
Q. I know in DOS you do dir /s for the entire system. What is the linux equivalent ?

A. ls -Ra /

That is LiSt Recursively All files starting with / (the top level).

Where can I find some very good linux software?
Q. I downloaded linux ubuntu as a second OS next to windows, I coudn't find any software for it, whre can i find some good software.

A. Ubuntu comes packed with a variety of free soft-wares already. Check in the 'Applications' on your top left-hand side.

If you want to install additional soft-wares, use the synaptic package manager (System > Administration > Synaptic Package Manager) click 'Reload' for synaptic to get the latest updates. Then type in the keywords or name of the software you want into the search bar, it will filter out, right-click on what you want to install and choose 'mark for installation', click 'Apply' to proceed



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Sunday, April 7, 2013

What is the linux command to list every file on the computer ?

Q. I know in DOS you do dir /s for the entire system. What is the linux equivalent ?

A. ls -Ra /

That is LiSt Recursively All files starting with / (the top level).

Where can I find some very good linux software?
Q. I downloaded linux ubuntu as a second OS next to windows, I coudn't find any software for it, whre can i find some good software.

A. Ubuntu comes packed with a variety of free soft-wares already. Check in the 'Applications' on your top left-hand side.

If you want to install additional soft-wares, use the synaptic package manager (System > Administration > Synaptic Package Manager) click 'Reload' for synaptic to get the latest updates. Then type in the keywords or name of the software you want into the search bar, it will filter out, right-click on what you want to install and choose 'mark for installation', click 'Apply' to proceed

How do I find the access point of some one who is accessing my lap top with a home computer?
Q. I bought the lap top from this person who is very controlive,I connect to internet through a wireless conection.Is there some way for him to still have controling cradentials under administrater controls that are hidden

A. I have no idea what you want, but the answer here is Yes. He could have a remote "assistance" program on the computer. If you want to make sure nothing funny is happening, it is best to consider simply reformatting the computer. If the person you bought the laptop from did not include the OS cd, you should confront them about it. Or use Linux, whatever. I heard Ubuntu was nice, though I've only used Whoppix.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Thursday, April 4, 2013

What's the difference between Linux operating systems?

Q. Linux has a lot of operating systems, I'm not even going to bother to list them. I was wondering, it there a difference between them? Does each type of Linux operating system hold a specific purpose? For example, Red Hat holds a different functionality to Ubuntu, or something like that.

A. Linux has many distros but all versions of Linux are the same OS.

Linux is extremely customizable. So much so that it'd be impossible for one person to do all the tweaks necessary to have what most people consider a polished and functional operating system. On top of that many Linux distros are heavily customized for specific purposes. Robotics, hardware appliance (routers for example), Real time OS (traffic lights, microwave ovens, unmanned aircraft), Music studios, Network security, Home theatre, Cash register, various industrial and scientific specialties, generic servers and so on.

There are also distros that are specialized to fit on a 1.44 floppy, thumb drives and a few distros specifically designed to run on CDs rather than be installed on a machine. There are distros that mimic other operating systems such as Mac OS and Windows so closely that at a glance you wouldn't know that you were not using those OS's. Other's are branded such as Dell's version of Ubuntu which is customized for Dell hardware.

There are also commercial versions of Linux. Red Hat Enterprise for example which is designed for high end servers and IBM's SUSE which has customizations for running on IBM virtual servers/being the host OS for the virtual servers, a desktop version which much of Europe's governments uses.

Distros often come with sub distros that are customized for various purposes. For example most major distros have a KDE and a Gnome version These are customized to people's favorite window managers and some distros support up to 5 or 6 window managers with sub-distros. Most support at least 2 or 3. Long term support, special purpose sub-distros like Ubuntu Studio which is geared for musicians are also common with widely used general distros.

The majority of distros however are shortcuts for Linux users to get what they want/need without spending the thousand of hours personally making those customizations. For example some like myself do too much customization and install too much software to upgrade a machine every 2 years. So long term support versions appeal heavily to me. I need and use a large variety of applications so it's important to have very large software repositories. Other people choose high performance bare bone distros. Some people want total control over their sytem and choose primitive distros that give you the bare min necessary, anything else the user installs themselves and customize as they see fit. (not recommended for anybody but an expert).

There are philosophical choices involved in choosing a distro. One big split for example is RH vrs Debian based systems. The RH fork (RHE, SUSE, Mandriva, CentOS) and Debian fork (Ubuntu, Debian) have some small differences in the way they are built. For example RH systems use YUM for software installation while Debian based systems use Apt-Get. You can install and use YUM on Debian systems and Apt-Get on RH systems. It's just a matter of defaults. Same with how root privileges are handled, and other minor details. The average user won't notice such subtle differences.

I've included a link to distro watch which gives details about specific distros as well as release cycles and where to download them.

What is the best linux distro for me?
Q. I am looking for a good linux distro. I don't like the standard GNOME 3 as I have tried the fedora live cd. I have tried KDE, its pretty good. I am currently running Kubuntu 11.10 and had ubuntu 11.04 unity before but I would like a linux thats advanced but easy. Thanks for your help.

A. The Linux Desktop is currently a mess with a plethora of options available. Unity as on Ubuntu 11.10 and GNOME 3 as on Fedora 16 are cluttered and in my opinion not suitable for use on a production machine. I need a Desktop Environment that allows me to just get things done with minimal fuss. This is where the older Gnome 2 Desktop Environment excels.

Linux Mint 12 goes some way to addressing this wth MGSE (Mint Gnome Shell Extensions) which is a layer built on top of GNOME 3 however like other distros. such as Fedora to deploy the GNOME 3 Desktop Environment for me does not convince

Linux Desktop Faceoff GNOME 3 vs Ubuntu Unity
http://lifehacker.com/5853099/linux-desktop-faceoff-gnome-3-vs-ubuntu-unity

There is a new project being developed by Linux Mint called Cinnamon however as with MGSE it is a layer built on top of GNOME 3
http://cinnamon.linuxmint.com/

I thoroughly recommend the earlier release Linux Mint 11 which is built upon Ubuntu 11.04 Its easy to install and easy to use plus it comes with much of the software you are likely to need preinstalled

Linux Mint 11 Download
http://www.linuxmint.com/edition.php?id=81

Linux Mint 11 Release Notes/Installation Guide/User Guide
http://linuxmint.com/rel_katya.php

Also worth considering is Linux Mint Debian Edition

Linux Mint Debian Edition Download
http://www.linuxmint.com/edition.php?id=88

Manual partitioning guide for Linux Mint Debian Edition
http://www.linuxbsdos.com/2010/12/28/manual-disk-partitioning-guide-for-linux-mint-debian-edition/


LUg.

How do I enter my passkey to connect to an internet connection on a Linux Ubuntu?
Q. You see, the network to access the internet here at home requires a password to connect to it, should you be using a Mac or a Windows based OS. However, my Linux just connects to the network without asking for a password. But I can't access the internet since I didn't enter the password. And I have no idea how to enter it. Any help?

A. click on internet connections on the top right

then select ur internet connection
if there exist a password then it prompts u for a password
then u need to change the mode to 128 bit hex, i think this is the second option over there in the password prompt box.

if this doesnt work u change the mode of access to shared key in the second trial



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Thursday, March 7, 2013

How to add a picture on top of my video in Windows Live Movie Maker?

Q. I recorded a video, and I want to put my logo on top of the video, and it be their the whole time the video is running. Is this possible?

A. In the apps I use (all Linux), you just make a transparent-background logo and put it on a separate track to be overlaid on the other tracks. You can fade it in and out too.

What is the linux command to list every file on the computer ?
Q. I know in DOS you do dir /s for the entire system. What is the linux equivalent ?

A. ls -Ra /

That is LiSt Recursively All files starting with / (the top level).

Where can I find some very good linux software?
Q. I downloaded linux ubuntu as a second OS next to windows, I coudn't find any software for it, whre can i find some good software.

A. Ubuntu comes packed with a variety of free soft-wares already. Check in the 'Applications' on your top left-hand side.

If you want to install additional soft-wares, use the synaptic package manager (System > Administration > Synaptic Package Manager) click 'Reload' for synaptic to get the latest updates. Then type in the keywords or name of the software you want into the search bar, it will filter out, right-click on what you want to install and choose 'mark for installation', click 'Apply' to proceed



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Tuesday, March 5, 2013

What's the difference between Linux operating systems?

Q. Linux has a lot of operating systems, I'm not even going to bother to list them. I was wondering, it there a difference between them? Does each type of Linux operating system hold a specific purpose? For example, Red Hat holds a different functionality to Ubuntu, or something like that.

A. Linux has many distros but all versions of Linux are the same OS.

Linux is extremely customizable. So much so that it'd be impossible for one person to do all the tweaks necessary to have what most people consider a polished and functional operating system. On top of that many Linux distros are heavily customized for specific purposes. Robotics, hardware appliance (routers for example), Real time OS (traffic lights, microwave ovens, unmanned aircraft), Music studios, Network security, Home theatre, Cash register, various industrial and scientific specialties, generic servers and so on.

There are also distros that are specialized to fit on a 1.44 floppy, thumb drives and a few distros specifically designed to run on CDs rather than be installed on a machine. There are distros that mimic other operating systems such as Mac OS and Windows so closely that at a glance you wouldn't know that you were not using those OS's. Other's are branded such as Dell's version of Ubuntu which is customized for Dell hardware.

There are also commercial versions of Linux. Red Hat Enterprise for example which is designed for high end servers and IBM's SUSE which has customizations for running on IBM virtual servers/being the host OS for the virtual servers, a desktop version which much of Europe's governments uses.

Distros often come with sub distros that are customized for various purposes. For example most major distros have a KDE and a Gnome version These are customized to people's favorite window managers and some distros support up to 5 or 6 window managers with sub-distros. Most support at least 2 or 3. Long term support, special purpose sub-distros like Ubuntu Studio which is geared for musicians are also common with widely used general distros.

The majority of distros however are shortcuts for Linux users to get what they want/need without spending the thousand of hours personally making those customizations. For example some like myself do too much customization and install too much software to upgrade a machine every 2 years. So long term support versions appeal heavily to me. I need and use a large variety of applications so it's important to have very large software repositories. Other people choose high performance bare bone distros. Some people want total control over their sytem and choose primitive distros that give you the bare min necessary, anything else the user installs themselves and customize as they see fit. (not recommended for anybody but an expert).

There are philosophical choices involved in choosing a distro. One big split for example is RH vrs Debian based systems. The RH fork (RHE, SUSE, Mandriva, CentOS) and Debian fork (Ubuntu, Debian) have some small differences in the way they are built. For example RH systems use YUM for software installation while Debian based systems use Apt-Get. You can install and use YUM on Debian systems and Apt-Get on RH systems. It's just a matter of defaults. Same with how root privileges are handled, and other minor details. The average user won't notice such subtle differences.

I've included a link to distro watch which gives details about specific distros as well as release cycles and where to download them.

How do I enter my passkey to connect to an internet connection on a Linux Ubuntu?
Q. You see, the network to access the internet here at home requires a password to connect to it, should you be using a Mac or a Windows based OS. However, my Linux just connects to the network without asking for a password. But I can't access the internet since I didn't enter the password. And I have no idea how to enter it. Any help?

A. click on internet connections on the top right

then select ur internet connection
if there exist a password then it prompts u for a password
then u need to change the mode to 128 bit hex, i think this is the second option over there in the password prompt box.

if this doesnt work u change the mode of access to shared key in the second trial

How to add a picture on top of my video in Windows Live Movie Maker?
Q. I recorded a video, and I want to put my logo on top of the video, and it be their the whole time the video is running. Is this possible?

A. In the apps I use (all Linux), you just make a transparent-background logo and put it on a separate track to be overlaid on the other tracks. You can fade it in and out too.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Monday, March 4, 2013

How can I access to an internet connection on linux using the wireless?

Q. I want to access to a wireless connection in a PC with linux (ubuntu 10.04). But I can't find any connection. Lately I realized that the wireless light on my computer (fujitsu Siemens) is turned off. How can I turn it on and access to an internet connection by wireless.

A. Weeks after weeks ppl keep asking this question. The answer is because you are using a free linux that mostly relies on opensource technology and insanely restrictive laws in the USA do not allow to integrate proprietary drivers in open source technology.

Ubuntu is a cute little linux but a nightmare for ppl using wifi, forget about installing the drivers yourself unless you are a programmer. Solution? use a top notch linux like Mandriva Power pack or SUSE linux entreprise they cost money but u pay for windows don t u?

You could always try your luck with linux miint it contains some proprietary drivers but has many bugs we found and translation of many applications in English or other languages is not always proper.

RICK

What's the difference between Linux operating systems?
Q. Linux has a lot of operating systems, I'm not even going to bother to list them. I was wondering, it there a difference between them? Does each type of Linux operating system hold a specific purpose? For example, Red Hat holds a different functionality to Ubuntu, or something like that.

A. Linux has many distros but all versions of Linux are the same OS.

Linux is extremely customizable. So much so that it'd be impossible for one person to do all the tweaks necessary to have what most people consider a polished and functional operating system. On top of that many Linux distros are heavily customized for specific purposes. Robotics, hardware appliance (routers for example), Real time OS (traffic lights, microwave ovens, unmanned aircraft), Music studios, Network security, Home theatre, Cash register, various industrial and scientific specialties, generic servers and so on.

There are also distros that are specialized to fit on a 1.44 floppy, thumb drives and a few distros specifically designed to run on CDs rather than be installed on a machine. There are distros that mimic other operating systems such as Mac OS and Windows so closely that at a glance you wouldn't know that you were not using those OS's. Other's are branded such as Dell's version of Ubuntu which is customized for Dell hardware.

There are also commercial versions of Linux. Red Hat Enterprise for example which is designed for high end servers and IBM's SUSE which has customizations for running on IBM virtual servers/being the host OS for the virtual servers, a desktop version which much of Europe's governments uses.

Distros often come with sub distros that are customized for various purposes. For example most major distros have a KDE and a Gnome version These are customized to people's favorite window managers and some distros support up to 5 or 6 window managers with sub-distros. Most support at least 2 or 3. Long term support, special purpose sub-distros like Ubuntu Studio which is geared for musicians are also common with widely used general distros.

The majority of distros however are shortcuts for Linux users to get what they want/need without spending the thousand of hours personally making those customizations. For example some like myself do too much customization and install too much software to upgrade a machine every 2 years. So long term support versions appeal heavily to me. I need and use a large variety of applications so it's important to have very large software repositories. Other people choose high performance bare bone distros. Some people want total control over their sytem and choose primitive distros that give you the bare min necessary, anything else the user installs themselves and customize as they see fit. (not recommended for anybody but an expert).

There are philosophical choices involved in choosing a distro. One big split for example is RH vrs Debian based systems. The RH fork (RHE, SUSE, Mandriva, CentOS) and Debian fork (Ubuntu, Debian) have some small differences in the way they are built. For example RH systems use YUM for software installation while Debian based systems use Apt-Get. You can install and use YUM on Debian systems and Apt-Get on RH systems. It's just a matter of defaults. Same with how root privileges are handled, and other minor details. The average user won't notice such subtle differences.

I've included a link to distro watch which gives details about specific distros as well as release cycles and where to download them.

What is the best linux distro for me?
Q. I am looking for a good linux distro. I don't like the standard GNOME 3 as I have tried the fedora live cd. I have tried KDE, its pretty good. I am currently running Kubuntu 11.10 and had ubuntu 11.04 unity before but I would like a linux thats advanced but easy. Thanks for your help.

A. The Linux Desktop is currently a mess with a plethora of options available. Unity as on Ubuntu 11.10 and GNOME 3 as on Fedora 16 are cluttered and in my opinion not suitable for use on a production machine. I need a Desktop Environment that allows me to just get things done with minimal fuss. This is where the older Gnome 2 Desktop Environment excels.

Linux Mint 12 goes some way to addressing this wth MGSE (Mint Gnome Shell Extensions) which is a layer built on top of GNOME 3 however like other distros. such as Fedora to deploy the GNOME 3 Desktop Environment for me does not convince

Linux Desktop Faceoff GNOME 3 vs Ubuntu Unity
http://lifehacker.com/5853099/linux-desktop-faceoff-gnome-3-vs-ubuntu-unity

There is a new project being developed by Linux Mint called Cinnamon however as with MGSE it is a layer built on top of GNOME 3
http://cinnamon.linuxmint.com/

I thoroughly recommend the earlier release Linux Mint 11 which is built upon Ubuntu 11.04 Its easy to install and easy to use plus it comes with much of the software you are likely to need preinstalled

Linux Mint 11 Download
http://www.linuxmint.com/edition.php?id=81

Linux Mint 11 Release Notes/Installation Guide/User Guide
http://linuxmint.com/rel_katya.php

Also worth considering is Linux Mint Debian Edition

Linux Mint Debian Edition Download
http://www.linuxmint.com/edition.php?id=88

Manual partitioning guide for Linux Mint Debian Edition
http://www.linuxbsdos.com/2010/12/28/manual-disk-partitioning-guide-for-linux-mint-debian-edition/


LUg.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Friday, February 22, 2013

How can I access to an internet connection on linux using the wireless?

Q. I want to access to a wireless connection in a PC with linux (ubuntu 10.04). But I can't find any connection. Lately I realized that the wireless light on my computer (fujitsu Siemens) is turned off. How can I turn it on and access to an internet connection by wireless.

A. Weeks after weeks ppl keep asking this question. The answer is because you are using a free linux that mostly relies on opensource technology and insanely restrictive laws in the USA do not allow to integrate proprietary drivers in open source technology.

Ubuntu is a cute little linux but a nightmare for ppl using wifi, forget about installing the drivers yourself unless you are a programmer. Solution? use a top notch linux like Mandriva Power pack or SUSE linux entreprise they cost money but u pay for windows don t u?

You could always try your luck with linux miint it contains some proprietary drivers but has many bugs we found and translation of many applications in English or other languages is not always proper.

RICK

What's the difference between Linux operating systems?
Q. Linux has a lot of operating systems, I'm not even going to bother to list them. I was wondering, it there a difference between them? Does each type of Linux operating system hold a specific purpose? For example, Red Hat holds a different functionality to Ubuntu, or something like that.

A. Linux has many distros but all versions of Linux are the same OS.

Linux is extremely customizable. So much so that it'd be impossible for one person to do all the tweaks necessary to have what most people consider a polished and functional operating system. On top of that many Linux distros are heavily customized for specific purposes. Robotics, hardware appliance (routers for example), Real time OS (traffic lights, microwave ovens, unmanned aircraft), Music studios, Network security, Home theatre, Cash register, various industrial and scientific specialties, generic servers and so on.

There are also distros that are specialized to fit on a 1.44 floppy, thumb drives and a few distros specifically designed to run on CDs rather than be installed on a machine. There are distros that mimic other operating systems such as Mac OS and Windows so closely that at a glance you wouldn't know that you were not using those OS's. Other's are branded such as Dell's version of Ubuntu which is customized for Dell hardware.

There are also commercial versions of Linux. Red Hat Enterprise for example which is designed for high end servers and IBM's SUSE which has customizations for running on IBM virtual servers/being the host OS for the virtual servers, a desktop version which much of Europe's governments uses.

Distros often come with sub distros that are customized for various purposes. For example most major distros have a KDE and a Gnome version These are customized to people's favorite window managers and some distros support up to 5 or 6 window managers with sub-distros. Most support at least 2 or 3. Long term support, special purpose sub-distros like Ubuntu Studio which is geared for musicians are also common with widely used general distros.

The majority of distros however are shortcuts for Linux users to get what they want/need without spending the thousand of hours personally making those customizations. For example some like myself do too much customization and install too much software to upgrade a machine every 2 years. So long term support versions appeal heavily to me. I need and use a large variety of applications so it's important to have very large software repositories. Other people choose high performance bare bone distros. Some people want total control over their sytem and choose primitive distros that give you the bare min necessary, anything else the user installs themselves and customize as they see fit. (not recommended for anybody but an expert).

There are philosophical choices involved in choosing a distro. One big split for example is RH vrs Debian based systems. The RH fork (RHE, SUSE, Mandriva, CentOS) and Debian fork (Ubuntu, Debian) have some small differences in the way they are built. For example RH systems use YUM for software installation while Debian based systems use Apt-Get. You can install and use YUM on Debian systems and Apt-Get on RH systems. It's just a matter of defaults. Same with how root privileges are handled, and other minor details. The average user won't notice such subtle differences.

I've included a link to distro watch which gives details about specific distros as well as release cycles and where to download them.

How do I enter my passkey to connect to an internet connection on a Linux Ubuntu?
Q. You see, the network to access the internet here at home requires a password to connect to it, should you be using a Mac or a Windows based OS. However, my Linux just connects to the network without asking for a password. But I can't access the internet since I didn't enter the password. And I have no idea how to enter it. Any help?

A. click on internet connections on the top right

then select ur internet connection
if there exist a password then it prompts u for a password
then u need to change the mode to 128 bit hex, i think this is the second option over there in the password prompt box.

if this doesnt work u change the mode of access to shared key in the second trial



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Thursday, February 21, 2013

How do I enter my passkey to connect to an internet connection on a Linux Ubuntu?

Q. You see, the network to access the internet here at home requires a password to connect to it, should you be using a Mac or a Windows based OS. However, my Linux just connects to the network without asking for a password. But I can't access the internet since I didn't enter the password. And I have no idea how to enter it. Any help?

A. click on internet connections on the top right

then select ur internet connection
if there exist a password then it prompts u for a password
then u need to change the mode to 128 bit hex, i think this is the second option over there in the password prompt box.

if this doesnt work u change the mode of access to shared key in the second trial

How to add a picture on top of my video in Windows Live Movie Maker?
Q. I recorded a video, and I want to put my logo on top of the video, and it be their the whole time the video is running. Is this possible?

A. In the apps I use (all Linux), you just make a transparent-background logo and put it on a separate track to be overlaid on the other tracks. You can fade it in and out too.

What is the linux command to list every file on the computer ?
Q. I know in DOS you do dir /s for the entire system. What is the linux equivalent ?

A. ls -Ra /

That is LiSt Recursively All files starting with / (the top level).



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Sunday, February 17, 2013

How to add a picture on top of my video in Windows Live Movie Maker?

Q. I recorded a video, and I want to put my logo on top of the video, and it be their the whole time the video is running. Is this possible?

A. In the apps I use (all Linux), you just make a transparent-background logo and put it on a separate track to be overlaid on the other tracks. You can fade it in and out too.

What is the linux command to list every file on the computer ?
Q. I know in DOS you do dir /s for the entire system. What is the linux equivalent ?

A. ls -Ra /

That is LiSt Recursively All files starting with / (the top level).

Where can I find some very good linux software?
Q. I downloaded linux ubuntu as a second OS next to windows, I coudn't find any software for it, whre can i find some good software.

A. Ubuntu comes packed with a variety of free soft-wares already. Check in the 'Applications' on your top left-hand side.

If you want to install additional soft-wares, use the synaptic package manager (System > Administration > Synaptic Package Manager) click 'Reload' for synaptic to get the latest updates. Then type in the keywords or name of the software you want into the search bar, it will filter out, right-click on what you want to install and choose 'mark for installation', click 'Apply' to proceed



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Thursday, February 14, 2013

What's the difference between Linux operating systems?

Q. Linux has a lot of operating systems, I'm not even going to bother to list them. I was wondering, it there a difference between them? Does each type of Linux operating system hold a specific purpose? For example, Red Hat holds a different functionality to Ubuntu, or something like that.

A. Linux has many distros but all versions of Linux are the same OS.

Linux is extremely customizable. So much so that it'd be impossible for one person to do all the tweaks necessary to have what most people consider a polished and functional operating system. On top of that many Linux distros are heavily customized for specific purposes. Robotics, hardware appliance (routers for example), Real time OS (traffic lights, microwave ovens, unmanned aircraft), Music studios, Network security, Home theatre, Cash register, various industrial and scientific specialties, generic servers and so on.

There are also distros that are specialized to fit on a 1.44 floppy, thumb drives and a few distros specifically designed to run on CDs rather than be installed on a machine. There are distros that mimic other operating systems such as Mac OS and Windows so closely that at a glance you wouldn't know that you were not using those OS's. Other's are branded such as Dell's version of Ubuntu which is customized for Dell hardware.

There are also commercial versions of Linux. Red Hat Enterprise for example which is designed for high end servers and IBM's SUSE which has customizations for running on IBM virtual servers/being the host OS for the virtual servers, a desktop version which much of Europe's governments uses.

Distros often come with sub distros that are customized for various purposes. For example most major distros have a KDE and a Gnome version These are customized to people's favorite window managers and some distros support up to 5 or 6 window managers with sub-distros. Most support at least 2 or 3. Long term support, special purpose sub-distros like Ubuntu Studio which is geared for musicians are also common with widely used general distros.

The majority of distros however are shortcuts for Linux users to get what they want/need without spending the thousand of hours personally making those customizations. For example some like myself do too much customization and install too much software to upgrade a machine every 2 years. So long term support versions appeal heavily to me. I need and use a large variety of applications so it's important to have very large software repositories. Other people choose high performance bare bone distros. Some people want total control over their sytem and choose primitive distros that give you the bare min necessary, anything else the user installs themselves and customize as they see fit. (not recommended for anybody but an expert).

There are philosophical choices involved in choosing a distro. One big split for example is RH vrs Debian based systems. The RH fork (RHE, SUSE, Mandriva, CentOS) and Debian fork (Ubuntu, Debian) have some small differences in the way they are built. For example RH systems use YUM for software installation while Debian based systems use Apt-Get. You can install and use YUM on Debian systems and Apt-Get on RH systems. It's just a matter of defaults. Same with how root privileges are handled, and other minor details. The average user won't notice such subtle differences.

I've included a link to distro watch which gives details about specific distros as well as release cycles and where to download them.

What is the best linux distro for me?
Q. I am looking for a good linux distro. I don't like the standard GNOME 3 as I have tried the fedora live cd. I have tried KDE, its pretty good. I am currently running Kubuntu 11.10 and had ubuntu 11.04 unity before but I would like a linux thats advanced but easy. Thanks for your help.

A. The Linux Desktop is currently a mess with a plethora of options available. Unity as on Ubuntu 11.10 and GNOME 3 as on Fedora 16 are cluttered and in my opinion not suitable for use on a production machine. I need a Desktop Environment that allows me to just get things done with minimal fuss. This is where the older Gnome 2 Desktop Environment excels.

Linux Mint 12 goes some way to addressing this wth MGSE (Mint Gnome Shell Extensions) which is a layer built on top of GNOME 3 however like other distros. such as Fedora to deploy the GNOME 3 Desktop Environment for me does not convince

Linux Desktop Faceoff GNOME 3 vs Ubuntu Unity
http://lifehacker.com/5853099/linux-desktop-faceoff-gnome-3-vs-ubuntu-unity

There is a new project being developed by Linux Mint called Cinnamon however as with MGSE it is a layer built on top of GNOME 3
http://cinnamon.linuxmint.com/

I thoroughly recommend the earlier release Linux Mint 11 which is built upon Ubuntu 11.04 Its easy to install and easy to use plus it comes with much of the software you are likely to need preinstalled

Linux Mint 11 Download
http://www.linuxmint.com/edition.php?id=81

Linux Mint 11 Release Notes/Installation Guide/User Guide
http://linuxmint.com/rel_katya.php

Also worth considering is Linux Mint Debian Edition

Linux Mint Debian Edition Download
http://www.linuxmint.com/edition.php?id=88

Manual partitioning guide for Linux Mint Debian Edition
http://www.linuxbsdos.com/2010/12/28/manual-disk-partitioning-guide-for-linux-mint-debian-edition/


LUg.

How do I install linux and get rid of windows xp?
Q. I just got a computer from a friend that had a corrupted version of windows xp. I tried uninstalling it through the command prompts but it says it wont work. I tried installing linux but after the boot screen it comes up with all these error messages. Im not planning on partitioning my hard drives. Does anyone know if you have to uninstall windows to make linux work right?

A. This is exactly what happened to me 4 years ago!

I was so mad that I installed a Linux distro, (I think it was MEPIS), lost my windows data, (stupid me...I didn't bother to save my files to another drive/partition) and HAVE NEVER LOOKED BACK!

I love Linux and have closed the windows forever!

To be safe, I recommend that you get a "live CD" of a distro like Ubuntu or MEPIS and try it out. A 'live CD' won't change anything on your hard drive, (like destroy the existing data etc.), and will allow you to see if Linux will work with your hardware. If the computer was running XP then chances are it has the RAM and processor speed to do real justice to a Linux distro. Most live Cd's include a hard drive installer.

Almost all hardware now works with Linux; the exceptions being some of the latest boards for which drivers have not yet been written. So there is a very good chance your computer will work just fine under the Linux OS.

If you don't want to spend the $1.95 for a CD, UBUNTU will send you one for free, but it takes a while as they are mailed out of Europe. Try OSDisc.com and click on the live CD tab at the top of the page. Try Puppy Linux too...you can install it on a 1Gb thumb drive just in case you hard drive is kaput!

lake



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Monday, February 11, 2013

How to add a picture on top of my video in Windows Live Movie Maker?

Q. I recorded a video, and I want to put my logo on top of the video, and it be their the whole time the video is running. Is this possible?

A. In the apps I use (all Linux), you just make a transparent-background logo and put it on a separate track to be overlaid on the other tracks. You can fade it in and out too.

What is the linux command to list every file on the computer ?
Q. I know in DOS you do dir /s for the entire system. What is the linux equivalent ?

A. ls -Ra /

That is LiSt Recursively All files starting with / (the top level).

Where can I find some very good linux software?
Q. I downloaded linux ubuntu as a second OS next to windows, I coudn't find any software for it, whre can i find some good software.

A. Ubuntu comes packed with a variety of free soft-wares already. Check in the 'Applications' on your top left-hand side.

If you want to install additional soft-wares, use the synaptic package manager (System > Administration > Synaptic Package Manager) click 'Reload' for synaptic to get the latest updates. Then type in the keywords or name of the software you want into the search bar, it will filter out, right-click on what you want to install and choose 'mark for installation', click 'Apply' to proceed



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Thursday, February 7, 2013

How do I enter my passkey to connect to an internet connection on a Linux Ubuntu?

Q. You see, the network to access the internet here at home requires a password to connect to it, should you be using a Mac or a Windows based OS. However, my Linux just connects to the network without asking for a password. But I can't access the internet since I didn't enter the password. And I have no idea how to enter it. Any help?

A. click on internet connections on the top right

then select ur internet connection
if there exist a password then it prompts u for a password
then u need to change the mode to 128 bit hex, i think this is the second option over there in the password prompt box.

if this doesnt work u change the mode of access to shared key in the second trial

How to add a picture on top of my video in Windows Live Movie Maker?
Q. I recorded a video, and I want to put my logo on top of the video, and it be their the whole time the video is running. Is this possible?

A. In the apps I use (all Linux), you just make a transparent-background logo and put it on a separate track to be overlaid on the other tracks. You can fade it in and out too.

What is the linux command to list every file on the computer ?
Q. I know in DOS you do dir /s for the entire system. What is the linux equivalent ?

A. ls -Ra /

That is LiSt Recursively All files starting with / (the top level).



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Sunday, February 3, 2013

How to count duplicate the lines of a file by using Linux Shell Programming?

Q. Hi,

I'm new to linux and to shell programming. I have an assignment to create a shell script that shows all the folders, sub folders and files of the current directory. LS does this. But I must count how many duplicate lines each file has, and show the line that is repeated the most times in each file.

I really have no idea where to start. How can I read/compare lines within a file?

Thanks in advance!

A. grep . anyFile | sort | uniq | wc
grep . anyFile | sort | wc

If a line is repeated, the output of the top grep code will be less than the bottom one.

How do I download a version of Linux without deleting my windows xp?
Q. I want to download a version of Linux without erasing windows xp. Can someone please give me step-by-step information on how to do this.(If you are familiar with Linux could you please recommed the best version). Thanks.

A. Options to try Linux:

(1) Download what's called a "Live CD". That's a bootable CD which contains the Linux of your choice set up so that it runs directly off the CD and doesn't change your hard drive at all.
* pro: Easiest option to try it out and install it.
* con: Can be slow to boot and run, so if you want to experiment with Linux for days or weeks you might find using a Live CD tedious. Usually can't save anything because you can't write to the hard drive.

(2) Make your system dual-boot. Most Linux distributions allow you to split your hard drive by shrinking the space devoted to your "C:" drive and install Linux in the free space.
* pro: Get the best performance, as you're running directly on the hardware and reading and writing to a hard drive instead of a CD.
* con: Requires a permanent change to your hard disk and a modification of your Windows partition, introducting the possibility of a failure or glitch in this process ruining your Windows partition (I suggest you back up your drive or at least important files when you do this). Also, normally the Windows partition is invisible to Linux and vice versa (though there are tools to remedy this to varying degrees). If you switch a lot between OS'es, can be time consuming to reboot all the time.
* when it's best: Best option when you've decided to use Linux long term and it's the best performer. Also best if you plan to use the computer intensively and for long periods of time.


(3) Use an emulator. One is vmware, but you can find other options. Generally, emulators are programs that emulate a whole x86 computer in software. However, installing directly to your hard drive, you create a file that the emulator uses as a virtual hard disk and install onto that.
* pro: Requires no hardware changes. Can run both OS'es concurrently, so you can do things like cut and paste between the two systems, or even use networking. A good compromise between Live CD's in that it's faster than a live CD, slower than running directly on the hardware.
* con: Can be slower than running than on the native hardware. Some devices may not work properly running under emulation.
* when it's best: This option works best for folks who wish to use Windows mostly and Linux lightly, switching between the two, as the switching effort is next to none. Also best for short-term trials of one or more Linux distributions, as setting up different VM's is very easy.

(4) Loadlin is a system to let you install and run Linux on top of a FAT16 or FAT32 partition (default for Windows 98 and earlier; NTFS is default for NT, XP and later). Technically, you're dual booting and have to reboot to switch OS'es, but you don't need to repartition your drive:
* pro: Avoids the need to repartition
* con: Not an option for most people running XP, unless their drive is already formatted for FAT32.

As for favorite distribution, my current favorite is called "Ubuntu", derived from Debian (see link below). Debian is one of the best distributions but can be a complicated and intimidating setup for someone new to Linux. Ubuntu is a commercially supported derivative with a GUI installer, a friendly and powerful repartitioner, lots of popular and useful utilities built-in, and huge free online repositories available with even more software which can be installed automatically from a friendly GUI-based program.

Others are:

* Fedora Core, based on Red Hat Linux. Perhaps the most widely known and popular distribution in my experience. Broad support in terms of hardware and many programs both free and commercial are built to run on Red Hat, everything from Oracle Databases to freeware media players. Also offers an online package installation system like Debian and Ubuntu, which goes by the name of "yum" (never used it myself though).

* Slackware: A favorite of many Linux veterans. While it lacks the flashiness of more recent entrants like Red Hat, has a reputation for being a solid Linux distribution. In my experience I love setting up servers under slackware because I've had Slackware boxes run longer without crashing than anything else. Many Linux experts like it because of the simplicity with which one can configure it from the command line. However, as it's supported by a very small crew it evolves more slowly than others. An advantage or liability depending upon your point of view.

For others, shop around by visiting DistroWatch. There are many more options, too many to list. Everything from full-featured distributions which have every program under the sun to highly specialized distributions for everything from building parallel compute clusters (Parallel Knoppix, scientific Linux) to building video player boxes (GeexBox)

All the best, and have fun!!

How can I access to an internet connection on linux using the wireless?
Q. I want to access to a wireless connection in a PC with linux (ubuntu 10.04). But I can't find any connection. Lately I realized that the wireless light on my computer (fujitsu Siemens) is turned off. How can I turn it on and access to an internet connection by wireless.

A. Weeks after weeks ppl keep asking this question. The answer is because you are using a free linux that mostly relies on opensource technology and insanely restrictive laws in the USA do not allow to integrate proprietary drivers in open source technology.

Ubuntu is a cute little linux but a nightmare for ppl using wifi, forget about installing the drivers yourself unless you are a programmer. Solution? use a top notch linux like Mandriva Power pack or SUSE linux entreprise they cost money but u pay for windows don t u?

You could always try your luck with linux miint it contains some proprietary drivers but has many bugs we found and translation of many applications in English or other languages is not always proper.

RICK



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Saturday, February 2, 2013

How do I download a version of Linux without deleting my windows xp?

Q. I want to download a version of Linux without erasing windows xp. Can someone please give me step-by-step information on how to do this.(If you are familiar with Linux could you please recommed the best version). Thanks.

A. Options to try Linux:

(1) Download what's called a "Live CD". That's a bootable CD which contains the Linux of your choice set up so that it runs directly off the CD and doesn't change your hard drive at all.
* pro: Easiest option to try it out and install it.
* con: Can be slow to boot and run, so if you want to experiment with Linux for days or weeks you might find using a Live CD tedious. Usually can't save anything because you can't write to the hard drive.

(2) Make your system dual-boot. Most Linux distributions allow you to split your hard drive by shrinking the space devoted to your "C:" drive and install Linux in the free space.
* pro: Get the best performance, as you're running directly on the hardware and reading and writing to a hard drive instead of a CD.
* con: Requires a permanent change to your hard disk and a modification of your Windows partition, introducting the possibility of a failure or glitch in this process ruining your Windows partition (I suggest you back up your drive or at least important files when you do this). Also, normally the Windows partition is invisible to Linux and vice versa (though there are tools to remedy this to varying degrees). If you switch a lot between OS'es, can be time consuming to reboot all the time.
* when it's best: Best option when you've decided to use Linux long term and it's the best performer. Also best if you plan to use the computer intensively and for long periods of time.


(3) Use an emulator. One is vmware, but you can find other options. Generally, emulators are programs that emulate a whole x86 computer in software. However, installing directly to your hard drive, you create a file that the emulator uses as a virtual hard disk and install onto that.
* pro: Requires no hardware changes. Can run both OS'es concurrently, so you can do things like cut and paste between the two systems, or even use networking. A good compromise between Live CD's in that it's faster than a live CD, slower than running directly on the hardware.
* con: Can be slower than running than on the native hardware. Some devices may not work properly running under emulation.
* when it's best: This option works best for folks who wish to use Windows mostly and Linux lightly, switching between the two, as the switching effort is next to none. Also best for short-term trials of one or more Linux distributions, as setting up different VM's is very easy.

(4) Loadlin is a system to let you install and run Linux on top of a FAT16 or FAT32 partition (default for Windows 98 and earlier; NTFS is default for NT, XP and later). Technically, you're dual booting and have to reboot to switch OS'es, but you don't need to repartition your drive:
* pro: Avoids the need to repartition
* con: Not an option for most people running XP, unless their drive is already formatted for FAT32.

As for favorite distribution, my current favorite is called "Ubuntu", derived from Debian (see link below). Debian is one of the best distributions but can be a complicated and intimidating setup for someone new to Linux. Ubuntu is a commercially supported derivative with a GUI installer, a friendly and powerful repartitioner, lots of popular and useful utilities built-in, and huge free online repositories available with even more software which can be installed automatically from a friendly GUI-based program.

Others are:

* Fedora Core, based on Red Hat Linux. Perhaps the most widely known and popular distribution in my experience. Broad support in terms of hardware and many programs both free and commercial are built to run on Red Hat, everything from Oracle Databases to freeware media players. Also offers an online package installation system like Debian and Ubuntu, which goes by the name of "yum" (never used it myself though).

* Slackware: A favorite of many Linux veterans. While it lacks the flashiness of more recent entrants like Red Hat, has a reputation for being a solid Linux distribution. In my experience I love setting up servers under slackware because I've had Slackware boxes run longer without crashing than anything else. Many Linux experts like it because of the simplicity with which one can configure it from the command line. However, as it's supported by a very small crew it evolves more slowly than others. An advantage or liability depending upon your point of view.

For others, shop around by visiting DistroWatch. There are many more options, too many to list. Everything from full-featured distributions which have every program under the sun to highly specialized distributions for everything from building parallel compute clusters (Parallel Knoppix, scientific Linux) to building video player boxes (GeexBox)

All the best, and have fun!!

How can I access to an internet connection on linux using the wireless?
Q. I want to access to a wireless connection in a PC with linux (ubuntu 10.04). But I can't find any connection. Lately I realized that the wireless light on my computer (fujitsu Siemens) is turned off. How can I turn it on and access to an internet connection by wireless.

A. Weeks after weeks ppl keep asking this question. The answer is because you are using a free linux that mostly relies on opensource technology and insanely restrictive laws in the USA do not allow to integrate proprietary drivers in open source technology.

Ubuntu is a cute little linux but a nightmare for ppl using wifi, forget about installing the drivers yourself unless you are a programmer. Solution? use a top notch linux like Mandriva Power pack or SUSE linux entreprise they cost money but u pay for windows don t u?

You could always try your luck with linux miint it contains some proprietary drivers but has many bugs we found and translation of many applications in English or other languages is not always proper.

RICK

What's the difference between Linux operating systems?
Q. Linux has a lot of operating systems, I'm not even going to bother to list them. I was wondering, it there a difference between them? Does each type of Linux operating system hold a specific purpose? For example, Red Hat holds a different functionality to Ubuntu, or something like that.

A. Linux has many distros but all versions of Linux are the same OS.

Linux is extremely customizable. So much so that it'd be impossible for one person to do all the tweaks necessary to have what most people consider a polished and functional operating system. On top of that many Linux distros are heavily customized for specific purposes. Robotics, hardware appliance (routers for example), Real time OS (traffic lights, microwave ovens, unmanned aircraft), Music studios, Network security, Home theatre, Cash register, various industrial and scientific specialties, generic servers and so on.

There are also distros that are specialized to fit on a 1.44 floppy, thumb drives and a few distros specifically designed to run on CDs rather than be installed on a machine. There are distros that mimic other operating systems such as Mac OS and Windows so closely that at a glance you wouldn't know that you were not using those OS's. Other's are branded such as Dell's version of Ubuntu which is customized for Dell hardware.

There are also commercial versions of Linux. Red Hat Enterprise for example which is designed for high end servers and IBM's SUSE which has customizations for running on IBM virtual servers/being the host OS for the virtual servers, a desktop version which much of Europe's governments uses.

Distros often come with sub distros that are customized for various purposes. For example most major distros have a KDE and a Gnome version These are customized to people's favorite window managers and some distros support up to 5 or 6 window managers with sub-distros. Most support at least 2 or 3. Long term support, special purpose sub-distros like Ubuntu Studio which is geared for musicians are also common with widely used general distros.

The majority of distros however are shortcuts for Linux users to get what they want/need without spending the thousand of hours personally making those customizations. For example some like myself do too much customization and install too much software to upgrade a machine every 2 years. So long term support versions appeal heavily to me. I need and use a large variety of applications so it's important to have very large software repositories. Other people choose high performance bare bone distros. Some people want total control over their sytem and choose primitive distros that give you the bare min necessary, anything else the user installs themselves and customize as they see fit. (not recommended for anybody but an expert).

There are philosophical choices involved in choosing a distro. One big split for example is RH vrs Debian based systems. The RH fork (RHE, SUSE, Mandriva, CentOS) and Debian fork (Ubuntu, Debian) have some small differences in the way they are built. For example RH systems use YUM for software installation while Debian based systems use Apt-Get. You can install and use YUM on Debian systems and Apt-Get on RH systems. It's just a matter of defaults. Same with how root privileges are handled, and other minor details. The average user won't notice such subtle differences.

I've included a link to distro watch which gives details about specific distros as well as release cycles and where to download them.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Older Posts Home