Aug 8, 2008

Linux Info/howto Topic? - need some feedback

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Operating Systems

free web hosting

Linux Info/howto Topic? - need some feedback

pbrugge
I am working on a linuxinfo and howto topic but I would care for some feedback about the info i give. Is it enough or do i need to work it out more?? Not this is just a passage not the whole thing.

******************************************************************************

Linux on your desktop?!

What kind of hardware do i need to run Linux?

Linux will basically run on almost all hardware you can think of. from a usb-memorystick up to a big mainframe. For modern distro's a PentiumIII/Celeron or Athlon computer with 128mb ram (256mb recommended) are good enough to use.

I thought Linux was free but there also packages for sale?

Thats correct you can get Linux for free from the internet but there is also a option to buy it at a store. When you buy (for instance) suse linux at a store you will be provided with a handbook and support from suse itself. When you get it for free on the internet you will need to use irc-channels, the site from your distro, google or irc to get your info.

Some sites (like http://www.osdisc.com/ ) also give you the option to buy linux for a small price so you don't have to download it (note the distro's bought from osdisk.com don't come with a handbook)

Where can i download linux?

A good place to start your search is http://distrowatch.com/ which has links to almost all distro's out there and also give some info about them. You could also go directly to the website of the distro of your choice.

Can i install linux and windows on the same computer?

Sure you can that's no problem at all smile.gif
You can use a partition program like Partition Magic to make some room on your harddisk (if you partition your harddisk don't forget to defragment it first). I recommend at least 5GB of space to use for your linux installation specially when you want to use a graphical interface. Most of the time when installing linux you will have the option to let the installer use the free space on your harddisk pick this option and the free space you created will be used for linux. During the installation you can also setup a boot loader (most modern distro's do the setup automatically) just make sure all other OS-es are recognized. After the installation you can use the boot loader grub (or lilo) to choose between linux or windows.

Whats the bootloader?

A bootloader is the first software program that runs when a computer starts. It is responsible for loading and transferring control to the operating system.

On linux there are two main bootloaders namely Grub (GRand Unified Bootloader) http://www.gnu.org/software/grub/
and LiLo (the Linux boot Loader). http://www.acm.uiuc.edu/workshops/linux_install/lilo.html

For info about howto setup grub or lilo I point you to the websites given since its allot of work to write a complete howto on that to. But perhaps in a later stadium I will do that to wink.gif


What linux program do i use for *this* windows program?


for most windows programs there is a good alternative on linux I will hand you a few options here: (W= Windows L=Linux)

W: Winamp -> L: Xmms, Amarok
W: ICQ -> L: Licq, Gaim, Kopete
W: MSN -> L: Kopete, Gaim, Amsn
W: IE -> L: Opera. Mozilla, Firefox, Konqueror
W: Photoshop -> L: Gimp
W: Office -> L: OpenOffice, Koffice
W: outlook -> L: Evolution, Kmial, Thunderbird
W: Mediaplayer/dvd-player -> L: Mplayer, Xine, Totem-movieplayer etc


Can I access my windows partitions in Linux?

Yes you can without any problems, but you will need to mount them to be viewable and writable to you. But first some small (but important) information about partitions.

In linux you can view which partitions are available to you by typing 'cat /proc/partitions' into a terminal (in windows known as command prompt/dos box). This will provide you with info about the partitions that are on your harddisk(s). When given that command on my box for instance I get the following output:
CODE

pbrugge@mybox:~$ cat /proc/partitions
major minor  #blocks  name

   3     0   20010312 hda
   3     1   12058168 hda1
   3     2          1 hda2
   3     5    7952080 hda5
   3    64   58633344 hdb
   3    65   10241406 hdb1
   3    66   20482875 hdb2
   3    67     498015 hdb3
   3    68          1 hdb4
   3    69   17679501 hdb5
   3    70    9727326 hdb6

hda is the first IDE-channels harddisk (master), hdb is the second harddisk (slave). Hdc is the first on the second IDE-channel etc..

As you can see in my output there are numbers behind it (hda1) this are the partitions on the harddisk. A drive can have up to 4 primary partitions (hdx1-4) and unlimited logical ones which go on a extended partition (hdx5 – hdx?) So hda1 means the first primary partition on the first IDE disk.

Note: A extended partition acts the same as a primary partition so setting up a extended partition means you loose one primary.
Note2: Logical partitions always start @ hdx5 and up

Oke back to mounting now smile.gif

in linux a partition gets mounted in a directory so before mounting a disk make sure you have setup a mount point where it can be mounted. Most common is to set a mount point in the '/mnt' directory. make sure its easy to remember. For instance for your windows 'c' partition you could set: '/mnt/c' this is done as root in a terminal with the command 'mkdir /mnt/c'
most pre-build kernels have support for almost all common file types.

which are:
- ext2/ext3/reiserfs/xfs for linux
- vfat en ntfs for windows
- iso9660 for cdrom

These are important to mount a partition in linux. to mount a ntfs partition that is on your C in windows the command to give is 'mount -t ntfs -o ro /dev/hda1 /mnt/c'. where 'ro' stands for 'read only' if you want to give read write access you should set ' -o rw' instead.

Another way to mount a drive is by use of the file '/etc/fstab' you still need to make mount points but if you set the mount options in the '/etc/fstab' file you can mount a drive whit the much shorter command 'mount /mnt/c'.

An example of the '/etc/fstab' file

CODE

# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>         <options>                    <dump>  <pass>
proc            /proc           proc           defaults                       0       0
/dev/hdb5       /               ext3           defaults,errors=remount-ro     0       1
/dev/hdb6       /home           ext3           defaults                       0       2
/dev/hdb3       none            swap           sw                             0       0
/dev/hdd        /media/cdrom0   udf,iso9660    ro,user,noauto                 0       0
/dev/hdc        /media/cdrom1   udf,iso9660    ro,user,noauto                 0       0
/dev/fd0        /media/floppy0  auto           rw,user,noauto                 0       0
/dev/hda1       /media/c        ntfs           rw,user,noauto umask=0000      0       0



the last line is the line we where talking about before so i will keep using it as reverence point for this section. i will explain what it all means here:

'/dev/hda1' is the partition we would like to mount on the mount point' /mnt/c' since it is a ntfs partition we need to set the ' type' to ' ntfs' we want 'read-write' access and the possibility for all users 'user'+' umask=0000' The noauto option means it wont be auto mounted at boot so you need to give the mount command to mount it. If you like to auto mount the partition during the boot just set 'auto' instead of 'noauto'.

Installing software.

Depending on what type of distro you are using there are a few options to install software on it. But notice that linux is not windows so .exe will not work on it. Linux works a little different.

Most linux distro's use a package manager to install or remove software. The best known are RPM and DPKG. Rpm or .rpm is the Redhat Package Manager and commes with Fedora, Redhat, Mandriva and Suse for instance. Dpkg or .deb is the package manager for debian based distro's like ubuntu, debian and xandros. There are also .tar files on the internet sometimes they are special pkgtool which is a installer tool on Slackware but most of the time they are just a kind of zipfiles with the program.

xxxxx—rest folows-----xxxxx

 

 

 


Reply

michaelper22
Nice how-to pbrugge. The tip for mounting in fstab is really useful. Also, on SuSE, there is a package manager in YaST, which greatly simplifies installing RPM packages. I bought SuSE Linux 9.1 Professional at CompUSA a few years back for about $90, and it came with 5 CDs, 2 double-sided DVD (for 64 bit systems), and 2 manuals (plus a little SuSE sticker that I put on the front of my machine).

Reply

serverph
closed. completed tutorial by author found here:
http://www.trap17.com/forums/linux-info-howto-t33051.html

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Similar Topics

Keywords : linux info howto topic feedback

  1. Lan Surfer In Linux - GUI software to view other's shared files (2)
  2. What Made You Switch To Linux? - (34)
    I first tried Linux a few years ago, not because I was completely against Windows or anything like
    that, but just because I had some free time on my hands. I started off with Mandrake 9.0 which was
    very user friendly and Windows-like. After reading through a bunch of message boards and learning
    which distros are good for what, I soon realized my current distro was great for Linux noobs. So
    then I decided to try something a little more advanced like Slackware which I knew had a steep
    learning curve. Since then I've been using Slackware as my main OS and couldn't ...
  3. Ubuntu Linux As Free Operating System Alternative - linux operating system (47)
    About three years ago I decided to learn how to use Linux and after a lot of posts on a forum I
    tried Ubuntu Linux as it was recommended as a good first Linux distro. Ubuntu is not the easiest
    Linux distro to use but with its unmatched forum community support it is one of the easiest to learn
    to use. One of the problems with learning Linux is that a lot of users have an attitude that Linux
    should be a free Windows knock off which it is not. Ubuntu is build on a Linix core or kernel and is
    a different Open Source and free as in to use operating system. This brings us to t...
  4. Pros And Cons Of Mac, Windows, And Linux - This is not a what's better topic, it's a pros and cons (33)
    Before i start i want to make sure you understand this is not a what OS is better this is a what is
    better at certain things and your reasons why. I would also like to know more about Linux because
    i'm slightly confused on it. Will it mess my computer up if i install it, dont like it, and
    uninstall it? OK on with the topic. I own a Mac and work on one for many hours a day, but had
    always used a Windows based system since well i was 5 and i remember my father using DOS to run Duke
    Nukem haha. So i know my way around it. Here is my Pros and Cons list Windows: Pros...
  5. How Do I Switch From Gnome To Kde? - Ubuntu Linux (6)
    Hey. I use Windows mainly, as I use games and graphical programs the most. However, I use Linux a
    bit, just for programming and other things like that. I'm not that good at programming and
    linux though ;_;... Well, I decided that the main reason I don't like to use it is that it
    looks so alien, and I hate how GNOME looks. I hear that if I move to KDE I'll be sacrificing
    some performance or whatnot. I have this really crazy linux zealot friend who preaches the linux
    gospel to me, and will attempt to beat down any reason why I like Windows. I would ask ...
  6. Is There A Linux Distro With Widescreen Support? - (7)
    Hello everyone! Ive tried one or two linux distros on my laptops but always the same snag...
    none/terrible widescreen support, i tried the live CD knoppix and mandriva and another i think that
    i cant remember... So my question is, is there a linux distro with good widescreen support for
    128OX8OOpx dimensions? to be more specific its 15.4in screen with the afore mentioned pixel
    dimensions. my GFX card is labelled as "ATI Radeon Xpress 2OOMnwith PCI Express Graphics up to 128mb
    memory" i think only the last part is relevant to the GFX specs but i included it all j...
  7. Help With Linux - Russix - (4)
    Hi, I am quite a big n00b with Linux. I need help with this issue. I didn't want to install
    Linux on my hard-drive but still wanted to use it as a normal version not from a Live CD. I was
    looking for a Linux that can be installed on a pen drive. First I found SLAX and then I stumbled
    upon Russix, which is also based on SLAX. I like the security auditing part of Russix.
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> Now , SLAX
    can be installed on a Pendrive. Can anyone help me with Russix ? I need to install Russ...
  8. If Mac Osx Is Best With Hardware, Where Does Linux Lie? - (5)
    Here's a good question: Is Linux better at utilizing hardware efficiently to produce optimal
    performance out of your components. I hear a lot about Mac OSX being so much better with Intel
    processors and yada yada, but I don't know if this is true or if a bunch of Mac elitists said a
    bunch of crap and ran with it. I don't think there are actual comparable benchmarks, but if
    there are, where does Linux lie in the hardware efficiency race? (Or is it dependent on which Linux
    distribution it is, like how XP still beats Vista in performance?)...
  9. Rate An Operating System! - I need this info for my comic strip. (0)
    I have a very irregular comic strip that I make, and I want my next strip to be in the spirit of
    XKCD's comic "f--- grapefruit", and rate operating systems instead. I'm running a poll
    here, based on whether people think an operating system is better than Windows 2000 or not, which
    I'm going to use as a benchmark (sea-level point) for rating systems. The rating system is on 3
    axes, "usefulness", "reliability", and "security". Basically, for the poll, check which ones you
    think are more useful than Windows 2000 on the first poll, which ones are more reliable ...
  10. What Linux Distro Do You Use ? - (63)
    I've just recently tried linux and I must say I"m really impressed with the new KDE and Gnome
    environments, as well as the shere number of OSS available. I'm really excited about devling
    deeper into this more stable and efficient OS; This coming from a windows user since it's dawn.
    I've started with Gentoo 2006.0 to get my feet wet, and I'm planning to grab the new Fedora
    Core 5 when I get a chance (as well as more cd's/dvd's) - it was recommended to me.
    Anyways, what linux flavor do you prefer and why ? ...
  11. How to setup DNS server in Linux Slackware - (4)
    Please help me how to set dns server in linuk slackware Moved from what is.. forum to operating
    systems. Please note that what is... section is not to ask question but to explain things. Also,
    Just writing these one-liners doesnt contribute much in the forum, so make sure that when you ask
    question you have to be explain each and everything and then only someone will be able to help you. ...
  12. Network Install Linux On Laptop With No Cd Drive? - (6)
    I was hoping some linux tech heads here could give me some pointers about installing linux onto a
    laptop I have which has no cd drive. To make things worse it does not even boot from usb. I had
    installed XP on it with an unattended install using the /makelocalsource switch which copies files
    to the local hdd then finishes setup from there after reboot. Is there an easy switch function to
    install any linux distro once you have the files on your hdd? (I have a mapped network drive to my
    laptop and sharing from my desktop so i can access my files. I just don't know if...
  13. Need Help With Linux Installation - (4)
    Hi, I need some help with Linux. 1. I need a linux distro that will be like real easy to install
    and should have support for ntfs preferably built-in. (I know its installed on ext3) 2. It should
    have support for nVidia Graphics card. Most of the linux I tried fail even to boot up. They
    don't recognize my graphics card. my specs are : QUOTE Intel Core 2 Quad Q6600 @ 2.4 GHz
    2 GB Ram XFX 650i Ultra Motherboard XFX 8600 GT (512 MB) Graphics Card. It should support
    all this /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggri...
  14. Linux - Why It Fails As A Desktop Operating System? - (34)
    Linux is becoming such a craze nowadays that not even a single day passes without one or other
    distribution releasing a new version. But why is it failing so miserably in the desktop arena. The
    answer lies in three reasons. 1. The plethora of distributions -
    Redhat,Debian,Ubuntu,Suse,Gentoo,Knoppix - everbody and his uncle is coming out with new ones. 2.
    The lack of backward compatibility - I had Redhat 7.3 running. I upgraded to Redhat 9. Many
    applications had to be recompiled. You ask my mom to recompile applications - She will throw out
    Linux and take Windows anyday. ...
  15. Installing Linux On My Laptop - (2)
    Hello, i have Debian "Sarge" in a DvD, and i want to install it in my dell d600 but i want to know
    if all this hardware is supported, or is better if i first donwload all that i goint to need,
    because if i install it but my lan adapters doesn't work then i will have some difficulties:
    This is my system Centrino LCD SXGA (1400x1050) Pentium M Banias 1.6 FSB 400 Mainboard i855PM ATI
    RADEON 9000 AUDIO SIGMATEL 9750 Intel PRO/Wireless LAN 2100 3A MINI PCI Broadcom 570X Gigabit
    Thank's for your help!!...
  16. Wireless Internet On Linux Mint 4.0 Daryna - bcm94311mcg wlan mini-pci (0)
    Well, a while back I started to get into Linux and tried out a few distros and found my perfect one.
    Linux Mint, a Ubuntu based distro that uses the same packages and repositories I believe. The latest
    version, Daryna, it based on Ubuntu Gutsy Gibbon. My laptop is a Compaq Presario C714NR with a
    BCM94311MCG WLAN Mini-PCI wireless card built in. It came with Windows Vista Home Premium and I
    bought it around December. Well, I finally got my wireless internet working using this tutorial:
    The tutorial was very simple and it did what it was supposed to do. I recommend doi...
  17. Linux And Win Xp - Together (4)
    Is there any way to install linux and win xp together on just one computer?...
  18. Linux FAQs - (3)
    OTE: This is not a how-to guide of any kind! As lot of people here seem to be new to GNU/Linux
    and I've seen quite a lot misunderstandings, I decided to write a little Frequently Asked
    Questions to raise general knowledge about the system. I tried to include only the very basics. I
    hope you will find this useful. Q: What is Linux? A: Linux is a free operating system released
    under GPL (General Public Licence), originally developed by Finnish student Linus Torvalds in 1991
    for hobby. It is freely available and can be modified by anyone as long as modified version...
  19. Loading Linux - Loading Linux (5)
    Go to http://www.Linux.org/dist/list.html Linux is packaged in different distributions one of my
    favorite is http://musix.org.ar/en/index.html it is full of powerful art producing software like
    http://www.rosegardenmusic.com/ and many more. many of the Linux distributions have what is called
    live CDs these are Linux Distributions You can run from Your CD ROM on Your windows system. You put
    the CD in before You boot then when You boot Your computer the CD boots up Linux and Linux now will
    recognize all Your hardware. You just download the MusixGNU+Linux1.0r2_Stable....
  20. Wubi: Install Ubuntu With A Single Click From Windows - If you are afraid of Linux, it's for you (11)
    Hi, I just found out this nice software which allows you to install Ubuntu from Windows as any other
    application. I haven't tried it personally though, because I'm already running Linux, but
    some of you may want to check it out. Here it is: http://wubi-installer.org/ I hope it helps
    somebody....
  21. Windows, Linux Or Mac Osx? - Which OS do u prefer. (25)
    Well, I've tried Ubuntu Gutsy and Windows Vista. I liked Ubuntu but I think that it needs more
    work to become a "real" OS, I mean, u need to know many code to can use it properly, I have 2PCs in
    one I've Windows Vista (my main laptop) and in my secondary PC (desktop) I've Ubuntu and
    Windows XP (dual-boot). Give ur opinion about this OS.!...
  22. Linux Or Windows Hosting Os? - (6)
    Okay i recently bought a godaddy hosting account. Now my question is whats the difference between
    the Linux OS hosting, and the Windows OS hosting?...
  23. Need Help Choosing A Linux Distro - (3)
    Hi, When I get my new computer soon I wan't to get XP, however, I also want to have Linux since
    I used it a couple of times and I thought it was good. Trouble is there are so many versions out
    there that I don't know which one I should pick. Ubuntu i've heard is very good but I wanted
    to ask the trap17 community first to see which version you think I should get?...
  24. Vista & Linux Double Boot - (8)
    I am considering installing Ubuntu Linux to run as a double boot on my new laptop. I purchased the
    laptop with Vista Home Premium and I need to keep it for some of my games and software. Ex. Guild
    Wars, Halo, Visual C++ Express. I am just wanting to run Linux to see what it is like and I am
    wondering whether or not I could run Vista and Linux on the same hard drive. I have at least 70GB of
    space left and my C partition contaisn about 103 GB. I just bought the laptop a few days ago. I am
    just wanting to know this because I am thinking of getting Linux and possibly an exte...
  25. Windows Or Linux. Undecided Now! Help Me. - At a cross-road between them. (23)
    I am at a situation now where by I am undecided whether continue using windows. I have always been a
    Windows Fan all my life until some months back when I started delving into the Linux world and wat I
    found in there was quite very impressing. When you talk about 3-D desktop environments and security
    and some real col stuffs like widgets and things like that, Linux has got it all. But for a few
    softwares, I would have said bye bye to windows months back. I need help here in making this
    decision. Is there any software in Linux that conviniently replace MS Encarta? or En...
  26. Do You Know When Mandriva Linux 2008 Will Be Released? - (3)
    I had been a Mandriva Linux fan for many years. But since the quality of its product became worse in
    2005, I dropped it. Recently I was told that Mandriva Linux is from good to better in 2007, so I
    want to try it again. So do you know when Mandriva Linux 2008 will be released?...
  27. Linux Help Please ! - Live CD problem with Ubuntu (8)
    OK heres the layout... i want linux, i have a CD with it on it i go to load it on my lap top, *its
    bootable* and i get thru everything installs and such, but when its done it shows a black screen
    with 2 white squares about half a inch long and half a inch wide, 2 of them apart from each other
    now when i reboot and take the CD out, there is no OS asks for a OS disk, it is called ubuntu. +
    where would i go about getting a *free* program to make a CD bootable so that i can download another
    thing of linux and also, which should i get? please answer this is vary confuseing ...
  28. Novell Ships Latest High-performance Linux Platform - (0)
    It's the Novell first time shipped the Real Time. So I don't think it is at the most
    effective coding for this release. Althrough it should without any critical issues. But I will wait
    until it's service pack or next release. QUOTE Novell Tuesday released SUSE Linux
    Enterprise Real Time 10, its open source operating system tuned for high-performance applications.
    Novell is targeting the platform at vertical industries looking to support applications that need
    the highest reliability and performance, including those in the financial services industry. N...
  29. Surveys. - sorry the last survey topic was closed. (1)
    Sorry the last survey topic was closed and I couldnt reply. There was alot of good answers there, it
    jsut depends on the person. but anyway I just wanted to have my say. lol.. Ok well I was one of
    those dummies that read and believed there was money in surveys. actually there is, but not like
    they say. They put up adds and say you can make money at least 60-200 bucks in yor first couple
    hours. that I believe is bs. I filled out surveys for almost 2 years just in my spare time and for
    fun, ( that was )after I found out there was not the money to be made that they had pr...
  30. Installing Compiz Fusion Onto Ubuntu Linux 7.10 (ati Graphics Card) - (0)
    Hello, In this tutorial I will show you how to install Compiz Fusion onto Ubuntu Linux version 7.10
    with an ATI Graphics card. Requirements: Ubuntu Linux 7.10 You use an ATI Graphics Card To
    start off, all these scripts should be ran in terminal. Terminal is accessed by clicking on:
    Applications Accessories Terminal We will be putting the prefix of sudo on before the codes.
    This makes it run as an administrator, as Ubuntu doesn't allow direct access to the accounts.
    First of all if you haven't already, enable the restricted driver for the ATI Graph...



Looking for linux, info, howto, topic, feedback

Searching Video's for linux, info, howto, topic, feedback
advertisement



Linux Info/howto Topic? - need some feedback



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE