Showing posts with label linux version command. Show all posts
Showing posts with label linux version command. Show all posts

Tuesday, May 14, 2013

Where do I find source code of linux commands?

Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.

What would it take to make you change from Windows to Linux?
Q. Personally I would switch tomorrow if all of the software I used was compatible with Linux.

I hope that with the average person coming out of school being more computer savy these days we will see more and more software developers releasing Linux versions.
I have tried Linux in the past and wasn't very fond of it, at that time I was not aware of all the different types available such as Red Hat and Ubuntu. There are versions out there easy to get to grips with and similar to Windows.

A. A direct port of Microsoft Office not a watered down version like they made for Mac. I have tried open office I don't like it.

More automation, I would like to be abe to double click an install file and have it install - I hate hate HATE using the Linux command terminal it is like pulling teeth.

A better IM client I think kMess and GAIM are crap - and a better music player I don't like amarok and WinAmp style media players I just don't like them and I won't 'get used to them over time'.

Did I mention how much I hate using the terminal?

Better games, Linux supports OpenGL and has tonnes of C++ compilers etc, there really is no excuse for not having better games.

Faster boot times, every version of Linux I have tried took ages to boot and my PC isn't exactly low spec, its got a Core 2 Duo @ 1.83ghz with 2 gigs of RAM it shouldn't take so long to boot.

And finally I really like to nosey around and change things when I muck up Windows its easy to restore, Linux isn't I want better recovery options for when theings do go wong because the always do.

I don't ask for much really.

On a unix-like system, how can I set the file permissions of a file to the current default permissions?
Q. Let us suppose I have a file set to the permissions -rwxr----- but the default on the system is -rwx-r-xr-x and insead of using the typical chmod command typing chmod 755 fileName, could I just type a command that sets it to the current default? I am using Ubuntu 12.04 but it would be much appreciated if it worked on mac and other linux versions as well.

A. There is no system default. However, there may will be a default set when you login. It is possible to derive the chmod value from the umask, but be aware that the umask is inverted:

$ umask
0022
$ touch ttt ; ls -l ttt
-rw-r--r-- 1 chris chris 0 Sep 14 23:37 ttt

Here's a tip. If you want to set permissions to rwx-r-xr-x, then don't bother trying to convert that to octal, just use the symbolic setting: chmod u=rwx,g=rx,o=rx fileName. Similar bits on the LHS can be merged, thus giving u=rwx,go=rx.

Don't use the x (execute) bit for files unless they really are supposed to be executable. u=rw,go=r is quite sufficient.



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

What version do I have to start learning linux?

Q. Which version do I have to start learning linux? What version is commonly used in the enterprise? Do all Linux versions have the same command? What is the difference between the versions of linux?

A. Any. All.

Redhat, Debian, and Ubuntu are common in enterprises. CentoOS is a free version of Redhat.

distrowatch.org.


...

What is the command to know the linux version i am using?
Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)

Where do I find source code of linux commands?
Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

How do I run a web browser from linux command line?

Q. I an VERY new to linux. I have installed Fedora 5 in text mode. I have a Linux book and am trying to slowly learn linux. So from the console, or command line, how do I run a web browser. Also how do I run the X Windows System?

A. If you installed in text mode, maybe you didn't install X. You probably have a text mode browser. Try lynx or elinks. If the startx command doesn't work, try "yum install x-window-system". By the way, Fedora 5 is old. The current version of Fedora is 9.

What commands should i type in the terminal to display my system information in Linux?
Q. Thanks to the Yahoo Linux Community, i took my first step and installed Linux Mint Helina into my system. I play around with it a little and really like it but I do not have any knowledge on how to install any drivers.

I tried to install pcwizard so that i could see my system information but unfortunately the software is not compatible with Linux. I not sure what i need to do, its totally a new environment for me.

A. A couple of things you need to know about Linux and *nix environments.

First, Linux is not Windows, so nothing that runs on Windows runs on Linux. There are exceptions. Some popular Windows apps have Linux versions (Firefox, Thunderbird for mail, Adobe Acrobat Reader). There's also a tool called Wine that allow you to run Windows programs from inside Linux. But stick with just Linux for now.

One doesn't install drivers for Linux the way you do in Windows. Most hardware is automatically detected and configured in the installation process. Anything exotic might need to have a module or library installed, but you can nearly always do that through the software manager. Check at the Mint or Ubuntu forms for any assistance on this.

Also. look on the system menus. There are lots of tools that will provide all the information you need about your system.

Also, from the console, there is no one tool that tells you everything. Linux and similar systems include a wide variety fo smaller tools and programs, each of which handles a specific task. For example:

ps -ef (this will give you a list of all the currently running processes).

lspci (gives a list of all the hardware on various system interfaces)

mount (gives you a list of all currently mounted drives and storage devices.

When a list of things goes beyond a screen page, you can "page' the output by piping it through a pager tool like "less":

ps -ef | less

This presents the information a page at a time, and you press the space bar to read the next page.

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

Tuesday, March 19, 2013

At school, how can you send a message to another linux computer using the linux version of command prompt?

Q. I have been trying to figure out how to send a message to another linux computer at school for a while now by using the linux version of command prompt. I have tried using the write command but it says I have write abilities disabled. I have also tried using smbclient -M accountnamehere and it always says failiure to connect to whatever account I tried to connect to. Any help would be awesome.

A. Maybe you as a normal user just don't have the rights to do so. It's probably so for security reasons.

What version do I have to start learning linux?
Q. Which version do I have to start learning linux? What version is commonly used in the enterprise? Do all Linux versions have the same command? What is the difference between the versions of linux?

A. Any. All.

Redhat, Debian, and Ubuntu are common in enterprises. CentoOS is a free version of Redhat.

distrowatch.org.


...

What is the command to know the linux version i am using?
Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)



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 version do I have to start learning linux?

Q. Which version do I have to start learning linux? What version is commonly used in the enterprise? Do all Linux versions have the same command? What is the difference between the versions of linux?

A. Any. All.

Redhat, Debian, and Ubuntu are common in enterprises. CentoOS is a free version of Redhat.

distrowatch.org.


...

What is the command to know the linux version i am using?
Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)

Where do I find source code of linux commands?
Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Tuesday, February 19, 2013

Where do I find source code of linux commands?

Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.

What would it take to make you change from Windows to Linux?
Q. Personally I would switch tomorrow if all of the software I used was compatible with Linux.

I hope that with the average person coming out of school being more computer savy these days we will see more and more software developers releasing Linux versions.
I have tried Linux in the past and wasn't very fond of it, at that time I was not aware of all the different types available such as Red Hat and Ubuntu. There are versions out there easy to get to grips with and similar to Windows.

A. A direct port of Microsoft Office not a watered down version like they made for Mac. I have tried open office I don't like it.

More automation, I would like to be abe to double click an install file and have it install - I hate hate HATE using the Linux command terminal it is like pulling teeth.

A better IM client I think kMess and GAIM are crap - and a better music player I don't like amarok and WinAmp style media players I just don't like them and I won't 'get used to them over time'.

Did I mention how much I hate using the terminal?

Better games, Linux supports OpenGL and has tonnes of C++ compilers etc, there really is no excuse for not having better games.

Faster boot times, every version of Linux I have tried took ages to boot and my PC isn't exactly low spec, its got a Core 2 Duo @ 1.83ghz with 2 gigs of RAM it shouldn't take so long to boot.

And finally I really like to nosey around and change things when I muck up Windows its easy to restore, Linux isn't I want better recovery options for when theings do go wong because the always do.

I don't ask for much really.

On a unix-like system, how can I set the file permissions of a file to the current default permissions?
Q. Let us suppose I have a file set to the permissions -rwxr----- but the default on the system is -rwx-r-xr-x and insead of using the typical chmod command typing chmod 755 fileName, could I just type a command that sets it to the current default? I am using Ubuntu 12.04 but it would be much appreciated if it worked on mac and other linux versions as well.

A. There is no system default. However, there may will be a default set when you login. It is possible to derive the chmod value from the umask, but be aware that the umask is inverted:

$ umask
0022
$ touch ttt ; ls -l ttt
-rw-r--r-- 1 chris chris 0 Sep 14 23:37 ttt

Here's a tip. If you want to set permissions to rwx-r-xr-x, then don't bother trying to convert that to octal, just use the symbolic setting: chmod u=rwx,g=rx,o=rx fileName. Similar bits on the LHS can be merged, thus giving u=rwx,go=rx.

Don't use the x (execute) bit for files unless they really are supposed to be executable. u=rw,go=r is quite sufficient.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Tuesday, February 12, 2013

What version do I have to start learning linux?

Q. Which version do I have to start learning linux? What version is commonly used in the enterprise? Do all Linux versions have the same command? What is the difference between the versions of linux?

A. Any. All.

Redhat, Debian, and Ubuntu are common in enterprises. CentoOS is a free version of Redhat.

distrowatch.org.


...

What is the command to know the linux version i am using?
Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)

Where do I find source code of linux commands?
Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Saturday, February 9, 2013

How do I run a web browser from linux command line?

Q. I an VERY new to linux. I have installed Fedora 5 in text mode. I have a Linux book and am trying to slowly learn linux. So from the console, or command line, how do I run a web browser. Also how do I run the X Windows System?

A. If you installed in text mode, maybe you didn't install X. You probably have a text mode browser. Try lynx or elinks. If the startx command doesn't work, try "yum install x-window-system". By the way, Fedora 5 is old. The current version of Fedora is 9.

What commands should i type in the terminal to display my system information in Linux?
Q. Thanks to the Yahoo Linux Community, i took my first step and installed Linux Mint Helina into my system. I play around with it a little and really like it but I do not have any knowledge on how to install any drivers.

I tried to install pcwizard so that i could see my system information but unfortunately the software is not compatible with Linux. I not sure what i need to do, its totally a new environment for me.

A. A couple of things you need to know about Linux and *nix environments.

First, Linux is not Windows, so nothing that runs on Windows runs on Linux. There are exceptions. Some popular Windows apps have Linux versions (Firefox, Thunderbird for mail, Adobe Acrobat Reader). There's also a tool called Wine that allow you to run Windows programs from inside Linux. But stick with just Linux for now.

One doesn't install drivers for Linux the way you do in Windows. Most hardware is automatically detected and configured in the installation process. Anything exotic might need to have a module or library installed, but you can nearly always do that through the software manager. Check at the Mint or Ubuntu forms for any assistance on this.

Also. look on the system menus. There are lots of tools that will provide all the information you need about your system.

Also, from the console, there is no one tool that tells you everything. Linux and similar systems include a wide variety fo smaller tools and programs, each of which handles a specific task. For example:

ps -ef (this will give you a list of all the currently running processes).

lspci (gives a list of all the hardware on various system interfaces)

mount (gives you a list of all currently mounted drives and storage devices.

When a list of things goes beyond a screen page, you can "page' the output by piping it through a pager tool like "less":

ps -ef | less

This presents the information a page at a time, and you press the space bar to read the next page.

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

Friday, February 8, 2013

How to make a terminal executable file?

Q. If I wanted to run a command on either Mac or Linux by the click of a button (opening a file), what would I do? I'm looking for a Mac/Linux version of a .bat file.

A. Linux has shell scripts which are typically written in SH files. Since Macintosh and Linux are both based on Unix, I suppose Macintosh probably has exactly the same thing.

How do I run a web browser from linux command line?
Q. I an VERY new to linux. I have installed Fedora 5 in text mode. I have a Linux book and am trying to slowly learn linux. So from the console, or command line, how do I run a web browser. Also how do I run the X Windows System?

A. If you installed in text mode, maybe you didn't install X. You probably have a text mode browser. Try lynx or elinks. If the startx command doesn't work, try "yum install x-window-system". By the way, Fedora 5 is old. The current version of Fedora is 9.

What commands should i type in the terminal to display my system information in Linux?
Q. Thanks to the Yahoo Linux Community, i took my first step and installed Linux Mint Helina into my system. I play around with it a little and really like it but I do not have any knowledge on how to install any drivers.

I tried to install pcwizard so that i could see my system information but unfortunately the software is not compatible with Linux. I not sure what i need to do, its totally a new environment for me.

A. A couple of things you need to know about Linux and *nix environments.

First, Linux is not Windows, so nothing that runs on Windows runs on Linux. There are exceptions. Some popular Windows apps have Linux versions (Firefox, Thunderbird for mail, Adobe Acrobat Reader). There's also a tool called Wine that allow you to run Windows programs from inside Linux. But stick with just Linux for now.

One doesn't install drivers for Linux the way you do in Windows. Most hardware is automatically detected and configured in the installation process. Anything exotic might need to have a module or library installed, but you can nearly always do that through the software manager. Check at the Mint or Ubuntu forms for any assistance on this.

Also. look on the system menus. There are lots of tools that will provide all the information you need about your system.

Also, from the console, there is no one tool that tells you everything. Linux and similar systems include a wide variety fo smaller tools and programs, each of which handles a specific task. For example:

ps -ef (this will give you a list of all the currently running processes).

lspci (gives a list of all the hardware on various system interfaces)

mount (gives you a list of all currently mounted drives and storage devices.

When a list of things goes beyond a screen page, you can "page' the output by piping it through a pager tool like "less":

ps -ef | less

This presents the information a page at a time, and you press the space bar to read the next page.



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

What version do I have to start learning linux?

Q. Which version do I have to start learning linux? What version is commonly used in the enterprise? Do all Linux versions have the same command? What is the difference between the versions of linux?

A. Any. All.

Redhat, Debian, and Ubuntu are common in enterprises. CentoOS is a free version of Redhat.

distrowatch.org.


...

What is the command to know the linux version i am using?
Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)

Where do I find source code of linux commands?
Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Tuesday, February 5, 2013

How do I run a web browser from linux command line?

Q. I an VERY new to linux. I have installed Fedora 5 in text mode. I have a Linux book and am trying to slowly learn linux. So from the console, or command line, how do I run a web browser. Also how do I run the X Windows System?

A. If you installed in text mode, maybe you didn't install X. You probably have a text mode browser. Try lynx or elinks. If the startx command doesn't work, try "yum install x-window-system". By the way, Fedora 5 is old. The current version of Fedora is 9.

What commands should i type in the terminal to display my system information in Linux?
Q. Thanks to the Yahoo Linux Community, i took my first step and installed Linux Mint Helina into my system. I play around with it a little and really like it but I do not have any knowledge on how to install any drivers.

I tried to install pcwizard so that i could see my system information but unfortunately the software is not compatible with Linux. I not sure what i need to do, its totally a new environment for me.

A. A couple of things you need to know about Linux and *nix environments.

First, Linux is not Windows, so nothing that runs on Windows runs on Linux. There are exceptions. Some popular Windows apps have Linux versions (Firefox, Thunderbird for mail, Adobe Acrobat Reader). There's also a tool called Wine that allow you to run Windows programs from inside Linux. But stick with just Linux for now.

One doesn't install drivers for Linux the way you do in Windows. Most hardware is automatically detected and configured in the installation process. Anything exotic might need to have a module or library installed, but you can nearly always do that through the software manager. Check at the Mint or Ubuntu forms for any assistance on this.

Also. look on the system menus. There are lots of tools that will provide all the information you need about your system.

Also, from the console, there is no one tool that tells you everything. Linux and similar systems include a wide variety fo smaller tools and programs, each of which handles a specific task. For example:

ps -ef (this will give you a list of all the currently running processes).

lspci (gives a list of all the hardware on various system interfaces)

mount (gives you a list of all currently mounted drives and storage devices.

When a list of things goes beyond a screen page, you can "page' the output by piping it through a pager tool like "less":

ps -ef | less

This presents the information a page at a time, and you press the space bar to read the next page.

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

Thursday, January 31, 2013

What version do I have to start learning linux?

Q. Which version do I have to start learning linux? What version is commonly used in the enterprise? Do all Linux versions have the same command? What is the difference between the versions of linux?

A. Any. All.

Redhat, Debian, and Ubuntu are common in enterprises. CentoOS is a free version of Redhat.

distrowatch.org.


...

What is the command to know the linux version i am using?
Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)

Where do I find source code of linux commands?
Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Monday, January 28, 2013

What is the command to know the linux version i am using?

Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)

Where do I find source code of linux commands?
Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.

What would it take to make you change from Windows to Linux?
Q. Personally I would switch tomorrow if all of the software I used was compatible with Linux.

I hope that with the average person coming out of school being more computer savy these days we will see more and more software developers releasing Linux versions.
I have tried Linux in the past and wasn't very fond of it, at that time I was not aware of all the different types available such as Red Hat and Ubuntu. There are versions out there easy to get to grips with and similar to Windows.

A. A direct port of Microsoft Office not a watered down version like they made for Mac. I have tried open office I don't like it.

More automation, I would like to be abe to double click an install file and have it install - I hate hate HATE using the Linux command terminal it is like pulling teeth.

A better IM client I think kMess and GAIM are crap - and a better music player I don't like amarok and WinAmp style media players I just don't like them and I won't 'get used to them over time'.

Did I mention how much I hate using the terminal?

Better games, Linux supports OpenGL and has tonnes of C++ compilers etc, there really is no excuse for not having better games.

Faster boot times, every version of Linux I have tried took ages to boot and my PC isn't exactly low spec, its got a Core 2 Duo @ 1.83ghz with 2 gigs of RAM it shouldn't take so long to boot.

And finally I really like to nosey around and change things when I muck up Windows its easy to restore, Linux isn't I want better recovery options for when theings do go wong because the always do.

I don't ask for much really.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

What is the command to know the linux version i am using?

Q. I am using a Linux server in command mode, i dont know which linux i am using ie whether it is Fedora Core 1,2,3 or Redh Hat linux Enterpirse or Linux 9.0 Version??

A. username@machine> uname -a
Linux test_machine1 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

In this example, the Linux kernel version is 2.4.21-4.


To obtain the Linux glibc version, type the following at the shell command prompt:

username@machine> rpm -q glibc
glibc-2.3.2-95.3

Two alternative methods to obtain glibc version information:
username@machine> /lib/libc.so.6 | head -1
GNU C Library stable release version 2.3.2, by Roland McGrath et al.

username@machine> getconf GNU_LIBC_VERSION
glibc 2.3.2

If you are using a RedHat Linux distribution, you can find the RedHat release by typing:
usename@machine> cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)

Where do I find source code of linux commands?
Q. Linux commands like cp, dir, ls, shred, man (etc...) are nothing but programs (hopefully all written in C). I would really like to know exactly how they work (and make a few modifications to some) so I need their source code...
Can you tell me where to find source code of linux commands?
Thank you in advance!

A. In general there are several places you can go to get the source for these commands. This is mostly because there can be several different implementations of the commands.

1) The company who distributed your version of Linux. Most versions of these types of commands are under the GPL and as such the person or company who gave you the executable has to make a copy of the source code available to you. Usually these are released as source rpms, and some times come on one of the CDs or DVDs that you used to install Linux with. You can often find them on the web too.

For example the RHEL5 Server source rpm (SRPM) is
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/coreutils-5.97-12.1.el5.src.rpm

Most of the time your distribution will have a tool like yum to install these and other rpms for you.

2) www.gnu.org
GNU probably wrote the commands that are on your distribution of Linux, although a few very specialized distros use different implementations of the commands (Usually busybox http://www.busybox.net/ but this is really rare).

http://www.gnu.org/software/coreutils/
has instructions on how to download a very recent copy of the code, which may be much much newer then the version currently installed on your computer.

NOTE:

Some shells, like tcsh and csh have their own implementations of these commands built into them. This is because it is faster to run the command as part of your shell then to fork and exec a new command. So if you do change them be sure to check that you are actually running your updated version. BASH usually does not play these games but you can always check by running which followed by the name of your command.

What would it take to make you change from Windows to Linux?
Q. Personally I would switch tomorrow if all of the software I used was compatible with Linux.

I hope that with the average person coming out of school being more computer savy these days we will see more and more software developers releasing Linux versions.
I have tried Linux in the past and wasn't very fond of it, at that time I was not aware of all the different types available such as Red Hat and Ubuntu. There are versions out there easy to get to grips with and similar to Windows.

A. A direct port of Microsoft Office not a watered down version like they made for Mac. I have tried open office I don't like it.

More automation, I would like to be abe to double click an install file and have it install - I hate hate HATE using the Linux command terminal it is like pulling teeth.

A better IM client I think kMess and GAIM are crap - and a better music player I don't like amarok and WinAmp style media players I just don't like them and I won't 'get used to them over time'.

Did I mention how much I hate using the terminal?

Better games, Linux supports OpenGL and has tonnes of C++ compilers etc, there really is no excuse for not having better games.

Faster boot times, every version of Linux I have tried took ages to boot and my PC isn't exactly low spec, its got a Core 2 Duo @ 1.83ghz with 2 gigs of RAM it shouldn't take so long to boot.

And finally I really like to nosey around and change things when I muck up Windows its easy to restore, Linux isn't I want better recovery options for when theings do go wong because the always do.

I don't ask for much really.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Saturday, January 26, 2013

How do I run a web browser from linux command line?

Q. I an VERY new to linux. I have installed Fedora 5 in text mode. I have a Linux book and am trying to slowly learn linux. So from the console, or command line, how do I run a web browser. Also how do I run the X Windows System?

A. If you installed in text mode, maybe you didn't install X. You probably have a text mode browser. Try lynx or elinks. If the startx command doesn't work, try "yum install x-window-system". By the way, Fedora 5 is old. The current version of Fedora is 9.

What commands should i type in the terminal to display my system information in Linux?
Q. Thanks to the Yahoo Linux Community, i took my first step and installed Linux Mint Helina into my system. I play around with it a little and really like it but I do not have any knowledge on how to install any drivers.

I tried to install pcwizard so that i could see my system information but unfortunately the software is not compatible with Linux. I not sure what i need to do, its totally a new environment for me.

A. A couple of things you need to know about Linux and *nix environments.

First, Linux is not Windows, so nothing that runs on Windows runs on Linux. There are exceptions. Some popular Windows apps have Linux versions (Firefox, Thunderbird for mail, Adobe Acrobat Reader). There's also a tool called Wine that allow you to run Windows programs from inside Linux. But stick with just Linux for now.

One doesn't install drivers for Linux the way you do in Windows. Most hardware is automatically detected and configured in the installation process. Anything exotic might need to have a module or library installed, but you can nearly always do that through the software manager. Check at the Mint or Ubuntu forms for any assistance on this.

Also. look on the system menus. There are lots of tools that will provide all the information you need about your system.

Also, from the console, there is no one tool that tells you everything. Linux and similar systems include a wide variety fo smaller tools and programs, each of which handles a specific task. For example:

ps -ef (this will give you a list of all the currently running processes).

lspci (gives a list of all the hardware on various system interfaces)

mount (gives you a list of all currently mounted drives and storage devices.

When a list of things goes beyond a screen page, you can "page' the output by piping it through a pager tool like "less":

ps -ef | less

This presents the information a page at a time, and you press the space bar to read the next page.

What is good recording software for linux?
Q. Ive recently started useing ubuntu linux, because it runs better on my computer than windows. Any suggestions for good music recording software? I have An electric keyboard, electric guitar, electric, bass, electric drums, and a sampler (turn tables). Id like something flexible so i can use them all on the same software.

A. Audacity is a the easiest to get jump started and most likely to have drivers for your break out box.

There are several others. If you do a lot of Midi work I suggest Rosegarden. Keyboardists especially tend to favor Rosegarden. I love the interface, full featured but can be picky about which break out boxes it talks too.

Aurdor is another full featured recording software but it's interface is more like Pro Tools while Rosegarden more closely resembles Cakewalk.

Those are the 3 I'd start with. The best way to get them is through your favorite package manager. Synaptic is one of the better ones. Just do a search in synaptic for these packages. They take care of the dependencies for you. Makes installing software on Linux the easiest platform in the world to install software for. Audacity, Rosegarden and Aurdor are all listed in the Multimedia(universe) section in Synaptic. Just check them say yes you want ot install and it's dependencies. Then click on apply when you have selected all the packages you want to install.

You'll also want a good tagger. Easy Tag is solid, I personally prefer Kid3, but there are dozen good ones and Ubuntu comes with Gtag I think it is by default. You should be able to edit ID3 tags through your file browser thought that is a bit tedious.

Installing Lame is a must. If your terrified of a command line you'll also want a Lame front end but to be honest using lame on command line is a no brainer. Open a term window, lame -vbr (name of wave file you want to convert to a mp3) (name you want the MP3 to be)

lame -vbr something.wav something.mp3

This mp3's it using variable bit rate which gives you the best compromise between sound quality and compactness of the output. Most mp3s you download today use lame and it's vbr setting. You get 256k quality where it counts but where there's lots of quiet you get higher compression ratios usually saving a couple megs on the final output without reducing the quality any.

There are dozens of Lame front ends to let you do that without using a command line. Just search synaptic for lame and you'll find them. Audacity, Rosegarden and Audor will plug into Lame and allow you to output MP3s directly as well once you have lame installed. Personally I like to hand rip my stuff, then tag it w/mix & version. Then rename & retag anything I'm sending out to people or the public. Saves listening to 10 copies of the same tune to find that ONE mix you were looking for.

As for sampler software, again there are programs similar to Acid and you can use Rosegarden and Audor though they are not designed for it to do some of it. I don't sample so I can't recommend which are best of breed in that area.

What break out box you have is the trickiest part. I suggest using Maudio or going direct through USB if that's an option. Maudio is decently supported in Linux. Avoid Tascam, nearly impossible to get Linux to talk to a Tascam device.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Sunday, January 20, 2013

What commands should i type in the terminal to display my system information in Linux?

Q. Thanks to the Yahoo Linux Community, i took my first step and installed Linux Mint Helina into my system. I play around with it a little and really like it but I do not have any knowledge on how to install any drivers.

I tried to install pcwizard so that i could see my system information but unfortunately the software is not compatible with Linux. I not sure what i need to do, its totally a new environment for me.

A. A couple of things you need to know about Linux and *nix environments.

First, Linux is not Windows, so nothing that runs on Windows runs on Linux. There are exceptions. Some popular Windows apps have Linux versions (Firefox, Thunderbird for mail, Adobe Acrobat Reader). There's also a tool called Wine that allow you to run Windows programs from inside Linux. But stick with just Linux for now.

One doesn't install drivers for Linux the way you do in Windows. Most hardware is automatically detected and configured in the installation process. Anything exotic might need to have a module or library installed, but you can nearly always do that through the software manager. Check at the Mint or Ubuntu forms for any assistance on this.

Also. look on the system menus. There are lots of tools that will provide all the information you need about your system.

Also, from the console, there is no one tool that tells you everything. Linux and similar systems include a wide variety fo smaller tools and programs, each of which handles a specific task. For example:

ps -ef (this will give you a list of all the currently running processes).

lspci (gives a list of all the hardware on various system interfaces)

mount (gives you a list of all currently mounted drives and storage devices.

When a list of things goes beyond a screen page, you can "page' the output by piping it through a pager tool like "less":

ps -ef | less

This presents the information a page at a time, and you press the space bar to read the next page.

What is good recording software for linux?
Q. Ive recently started useing ubuntu linux, because it runs better on my computer than windows. Any suggestions for good music recording software? I have An electric keyboard, electric guitar, electric, bass, electric drums, and a sampler (turn tables). Id like something flexible so i can use them all on the same software.

A. Audacity is a the easiest to get jump started and most likely to have drivers for your break out box.

There are several others. If you do a lot of Midi work I suggest Rosegarden. Keyboardists especially tend to favor Rosegarden. I love the interface, full featured but can be picky about which break out boxes it talks too.

Aurdor is another full featured recording software but it's interface is more like Pro Tools while Rosegarden more closely resembles Cakewalk.

Those are the 3 I'd start with. The best way to get them is through your favorite package manager. Synaptic is one of the better ones. Just do a search in synaptic for these packages. They take care of the dependencies for you. Makes installing software on Linux the easiest platform in the world to install software for. Audacity, Rosegarden and Aurdor are all listed in the Multimedia(universe) section in Synaptic. Just check them say yes you want ot install and it's dependencies. Then click on apply when you have selected all the packages you want to install.

You'll also want a good tagger. Easy Tag is solid, I personally prefer Kid3, but there are dozen good ones and Ubuntu comes with Gtag I think it is by default. You should be able to edit ID3 tags through your file browser thought that is a bit tedious.

Installing Lame is a must. If your terrified of a command line you'll also want a Lame front end but to be honest using lame on command line is a no brainer. Open a term window, lame -vbr (name of wave file you want to convert to a mp3) (name you want the MP3 to be)

lame -vbr something.wav something.mp3

This mp3's it using variable bit rate which gives you the best compromise between sound quality and compactness of the output. Most mp3s you download today use lame and it's vbr setting. You get 256k quality where it counts but where there's lots of quiet you get higher compression ratios usually saving a couple megs on the final output without reducing the quality any.

There are dozens of Lame front ends to let you do that without using a command line. Just search synaptic for lame and you'll find them. Audacity, Rosegarden and Audor will plug into Lame and allow you to output MP3s directly as well once you have lame installed. Personally I like to hand rip my stuff, then tag it w/mix & version. Then rename & retag anything I'm sending out to people or the public. Saves listening to 10 copies of the same tune to find that ONE mix you were looking for.

As for sampler software, again there are programs similar to Acid and you can use Rosegarden and Audor though they are not designed for it to do some of it. I don't sample so I can't recommend which are best of breed in that area.

What break out box you have is the trickiest part. I suggest using Maudio or going direct through USB if that's an option. Maudio is decently supported in Linux. Avoid Tascam, nearly impossible to get Linux to talk to a Tascam device.

How do I use the command line email function?
Q. I use a macbook pro, is there any software I need to download?

How do I use the command line to email me?

Lastly I ask because I would like to use a program that I can have e-mail me when my renders are finished on Maya. Thanks.

A. This is possible on Linux. On a Mac you might have to program. Java 1.6 has Desktop.browser() and that gets the system's default browser. python also can command the system browser. Before you try either of those options -- Apple is currently at version 1.5 java -- research to see if AppleScript will do what you want. I include the link below because I know MacOS is part Linux. I don't know how much Linux is exposed.



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

Older Posts Home