Page 2 of 2 FirstFirst 12
Results 26 to 47 of 47

Thread: Help me choose a Linuix version

  1. #26
    ShAdOwCoN
    Guest

    Default

    -->Fedora is one of the most stables version of Linux , It has been around for many years and every year they release a new version .

    Because of its stability many institutions prefer Fedora core

    -->Ubuntu is the most popular version of Linux . And because of it popularity you can get free support from Other Ubuntu users in Ubuntu forums .

    -->Ubuntu 8.04 version of Ubuntu will be officially supported by its devolopers for the next 4 years .

    -->Ubuntu 8.10 will be supported officially for roughly 1.5 to to 2 years .And i ll also tell you that its a bit more buggy than previous versions of Ubuntu .


    For ubuntu you need only a single Partition . Archer has given the minimum size for the partiton in the previous posts .

    The partiton will be formatted in the ext3 format [Normally your Drives will be partitioned in the NTFS format]

    You can manualy set the size and format of the partitions before installing .

    the partition in which Ubuntu is installed will not be visible in windows .

    Quote Originally Posted by newprouser View Post
    My biggest doubt with linux is how many partitions do they require or wat is the least number of partitons required and how much minimum space for each partiton ?

    One look at fedora documentation had my head spinning , they recommended sth like 5 partitons for root,home, data and watever else

    And other thing which is best bootmanager (other than grub) for tri-booting wid Xp and vista.

    Has anybody tried using linux with Mac OS X on pc ?
    Why do you want another bootmanager ?

    Grub is just fine ..... If you r not happy with the way it chooses the OS priority just open its source file in Linux and edit it

    Do you own an apple computer ?

    Mac OS X works only on Apple Desktops and Laptops ..... I dunno if you can install Linux in apple computers ....
    Last edited by ShAdOwCoN; 12-16-08 at 11:39 PM. Reason: Automerged Doublepost

  2. #27
    newprouser
    Guest

    Default

    Quote Originally Posted by ShAdOwCoN View Post
    Why do you want another bootmanager ?

    Grub is just fine ..... If you r not happy with the way it chooses the OS priority just open its source file in Linux and edit it
    Coz i wanted to triple boot windows, linux and mac os X. And i wanted some method to boot linux through the Vista bootloader.

    Quote Originally Posted by ShAdOwCoN View Post
    Do you own an apple computer ?

    Mac OS X works only on Apple Desktops and Laptops ..... I dunno if you can install Linux in apple computers ....
    There are modded versions of Mac os X with specific driver files(kexts or sth similar name) with can work with PC.

    U can get more info here.... http://uphuck.ggrn.de


    Whether its legal or not purely depends on if u own a mac licence or not.

  3. #28
    Junior Member
    Join Date
    Jul 2008
    Age
    24
    Liked
    0 times
    Posts
    17

    Default

    i have download the new version of fedora 10......i am a first time user of Linux....so i need to know the installation procedure.....i have made a bootable CD and i am able to boot thru the CD....but i donno how to go ahead....i wud love to have the Gnome desktop after installation....pls help

  4. #29
    newprouser
    Guest

    Default

    Quote Originally Posted by manas27587 View Post
    i have download the new version of fedora 10......i am a first time user of Linux....so i need to know the installation procedure.....i have made a bootable CD and i am able to boot thru the CD....but i donno how to go ahead....i wud love to have the Gnome desktop after installation....pls help
    Usually there is an option on the desktop or the menu to install, there after you jus follow the instructions on screen.

    The only difficult part is the parititioning , which you have to be carefull with. I would suggest that you take a backup of all your important data.

    If you have any other doubts check the fedora documentation its pretty good.
    Fedora Install Guide

    If you have the time and patience you can install it first in Vmware or Virtual PC to be sure.

    Good luck , enjoy.

  5. #30
    ShAdOwCoN
    Guest

    Default

    Quote Originally Posted by newprouser View Post
    Coz i wanted to triple boot windows, linux and mac os X. And i wanted some method to boot linux through the Vista bootloader.



    There are modded versions of Mac os X with specific driver files(kexts or sth similar name) with can work with PC.

    U can get more info here.... http://uphuck.ggrn.de


    Whether its legal or not purely depends on if u own a mac licence or not.
    if you want the vista boot loader ... y go for 3 rd party bootloader :confused1:

    Quote Originally Posted by manas27587 View Post
    i have download the new version of fedora 10......i am a first time user of Linux....so i need to know the installation procedure.....i have made a bootable CD and i am able to boot thru the CD....but i donno how to go ahead....i wud love to have the Gnome desktop after installation....pls help
    Check this guide

    Installing Fedora 10 - Step by step installation guide with screenshots - Softpedia

    For step by step installation along with Screenshots Pictures for every step
    Last edited by ShAdOwCoN; 12-18-08 at 01:54 AM. Reason: Automerged Doublepost

  6. #31
    newprouser
    Guest

    Default

    Quote Originally Posted by ShAdOwCoN View Post
    if you want the vista boot loader ... y go for 3 rd party bootloader :confused1:
    Yea confused my self a bit over there.... Since GRUB cannot boot into mac partitions , i'm looking for a suitable loader which can handle all the 3 OS's

    Edit : This can be done from within Easy BCD software itself.Wish i had found this earlier.:yawn:
    Last edited by newprouser; 12-19-08 at 12:07 AM.

  7. #32
    ShAdOwCoN
    Guest

    Default

    Quote Originally Posted by newprouser View Post
    Yea confused my self a bit over there.... Since GRUB cannot boot into mac partitions , i'm looking for a suitable loader which can handle all the 3 OS's

    Edit : This can be done from within Easy BCD software itself.Wish i had found this earlier.:yawn:
    xp's and Vista's Boot loader does not give you the Linux option .... am i correct ?

  8. #33
    smnesmwhr
    Guest

    Default

    Quote Originally Posted by ShAdOwCoN View Post
    xp's and Vista's Boot loader does not give you the Linux option .... am i correct ?
    Not quite, you can use dd command in Linux to create an image file from the boot partition of Linux, make an entry in boot.ini and thus get the Linux option from the Windows menu.

    An example, assuming your Linux /boot is /dev/sda2 and your windows partition is /dev/sda1, as reported by the fdisk in Linux and that you are using FAT32 filesystem in Windows; and you are at a Linux command-prompt with root access at the moment:

    mkdir -p /mount/windows
    mount -t vfat /dev/sda1 /mount/windows
    dd if=/dev/sda2 of=/mount/windows/linux.boot bs=512 count=1

    then in your boot.ini, add:
    c:\linux.boot="Linux"
    in the Operating Systems section.

    You can use, say:
    vi /mount/windows/boot.ini
    to edit this file, or you can boot into Windows, use the Control Panel|System|Advanced|Startup and Recovery section=>Settings to edit this file
    Last edited by smnesmwhr; 12-19-08 at 04:20 AM.

  9. #34
    ShAdOwCoN
    Guest

    Default

    Quote Originally Posted by smnesmwhr View Post
    Not quite, you can use dd command in Linux to create an image file from the boot partition of Linux, make an entry in boot.ini and thus get the Linux option from the Windows menu.
    ok then its similar to grub ....

    Its simpler in grub for a windows entry though

  10. #35
    newprouser
    Guest

    Default

    Quote Originally Posted by smnesmwhr View Post

    mkdir -p /mount/windows
    mount -t vfat /dev/sda1 /mount/windows
    dd if=/dev/sda2 of=/mount/windows/linux.boot bs=512 count=1

    Can u explain the meaning of those commands , coz its possible i may have to change it to suit my config.

    I am using NTFS , so wat changes in the command should i make.

  11. #36
    smnesmwhr
    Guest

    Default

    Quote Originally Posted by newprouser View Post
    Can u explain the meaning of those commands , coz its possible i may have to change it to suit my config.

    I am using NTFS , so wat changes in the command should i make.
    You should use filesystem type ntfs in the mount command, instead of vfat.
    /dev/sdax shows your partition number as reported by Linux fdisk command or its variants, you have to substitute your partition number correctly; and it can be /dev/hdax as well, just look at the output of your fdisk command in Linux (x is the partition number here, e.g., 1 or 3)

    Doing a man <command> will tell you what the command is about, e.g., man dd (you can also type this in google search: manual dd linux)

    mkdir -p is used to create directory hierarchy.
    mount is used to mount a file-system under the chosen directory., e.g., to mount your c:\ drive under /mount/windows directory. Mounting makes it accessible as if it were a local directory.
    dd is used to read and write raw bytes and can access boot records etc. (provided you know where on hard-disk the boot record is). In the example, we are reading off 512 bytes from the beginning of /dev/sda1 and writing them to a file, effectively capturing the boot record of Windows. Some people prefer to copy 1024 bytes instead. Very briefly, a boot record is a small program which ultimately transfers control to a pre-set or a configurable location (varies among boot records of different OS).
    Last edited by smnesmwhr; 12-20-08 at 03:45 PM.

  12. #37
    newprouser
    Guest

    Default

    @smnesmwhr
    Thanks for the reply with detailed info...

    Gave you a repo..

  13. #38
    newprouser
    Guest

    Default

    If anybody is interested in accessing linux partition is ext2 format from windows u can use the extension windows explorer from here.

    I have not tried it myself, but if u do so , pls give ur comments here.

    Ext2 IFS For Windows

  14. #39
    smnesmwhr
    Guest

    Default

    Quote Originally Posted by newprouser View Post
    If anybody is interested in accessing linux partition is ext2 format from windows u can use the extension windows explorer from here.

    I have not tried it myself, but if u do so , pls give ur comments here.

    Ext2 IFS For Windows
    This software is perfectly usable, I use it. It supports Windows Vista now as well. There can be occasional glitches with the control panel utility it provides, but nothing is a show stopper. You can make your Linux partition appear as a drive in Windows by assigning it a drive letter using the utility (appearing in control panel) installed with this software.

    I would recommend it but go through the web-site first to learn about any potential pitfalls and how the ext3 is supported etc.

  15. #40
    Junior Member
    Join Date
    Apr 2007
    Liked
    0 times
    Posts
    39

    Red face

    windows XP is best OS dont go to linux:scooter:

  16. #41
    newprouser
    Guest

    Default

    Quote Originally Posted by niceguysan View Post
    windows XP is best OS dont go to linux:scooter:
    Maybe.

    But still worth a try, if have nothing to lose...like to lose or atleast for the sake of adventure


    ******

    If i were to install two linux os in a hdd wat partitons can be kept as common. Eg swap.
    Last edited by newprouser; 12-29-08 at 11:53 PM.

  17. #42
    Super Moderator smoothvibes's Avatar
    Join Date
    Jul 2008
    Liked
    0 times
    Posts
    4,876

    Default

    Quote Originally Posted by niceguysan View Post
    windows XP is best OS dont go to linux:scooter:
    are you sure about it and can you please tell me any good reason to stay with windows

  18. #43
    ShAdOwCoN
    Guest

    Default

    Quote Originally Posted by smnesmwhr View Post
    You should use filesystem type ntfs in the mount command, instead of vfat.
    /dev/sdax shows your partition number as reported by Linux fdisk command or its variants, you have to substitute your partition number correctly; and it can be /dev/hdax as well, just look at the output of your fdisk command in Linux (x is the partition number here, e.g., 1 or 3)

    Doing a man <command> will tell you what the command is about, e.g., man dd (you can also type this in google search: manual dd linux)

    mkdir -p is used to create directory hierarchy.
    mount is used to mount a file-system under the chosen directory., e.g., to mount your c:\ drive under /mount/windows directory. Mounting makes it accessible as if it were a local directory.
    dd is used to read and write raw bytes and can access boot records etc. (provided you know where on hard-disk the boot record is). In the example, we are reading off 512 bytes from the beginning of /dev/sda1 and writing them to a file, effectively capturing the boot record of Windows. Some people prefer to copy 1024 bytes instead. Very briefly, a boot record is a small program which ultimately transfers control to a pre-set or a configurable location (varies among boot records of different OS).
    Quote Originally Posted by newprouser View Post
    @smnesmwhr
    Thanks for the reply with detailed info...

    Gave you a repo..
    man stands for manual [user manual d'uh]
    mkdir for make directory
    cp for copy
    dd for data definition
    cd for change directory

    etc etc

    All these are shell commands

  19. #44
    Sid
    Guest

    Default

    ubuntu 8.10 is good........

  20. #45
    Junior Member
    Join Date
    Apr 2007
    Liked
    0 times
    Posts
    39

    Default

    Quote Originally Posted by smoothvibes View Post
    are you sure about it and can you please tell me any good reason to stay with windows
    People say that you get thousands of virus attacks but its been a year anti virus has protected my computer a lot, and i am really happy with it i know how to manage, i also have fedora as my second OS but on it my inbuild webcam and inbuild card reader doesnt work... and how data is written on EXT2 file system by fedora is very senstive , even a litttle problem leads to scan every time i reboot but know i do fsck -l that fixes and i am back again but takes time though.

  21. #46
    Bronze Member
    Join Date
    Mar 2008
    Age
    31
    Liked
    0 times
    Posts
    141

    Default

    Forget everything else, get Puppy Linux. Its probably the smallest Linux around - just 100 MB! And it boots within a minute. If you haven't used Linux before, its probably the best way to begin. You can boot it from the CD - no need to install it to HDD, and then you can remove the CD because it runs entirely from RAM. Of course you can install it to the HDD if you want. Take a look at its desktop:



    You can continue using XP like I do, and use Puppy whenever you want to. And this isn't the only one available, the screenshot is of the basic version. People have made mods, called Puplets, and those ones have Firefox and all pre-installed (if I remember correctly). You'll get it all on its official site, just google it.

  22. #47
    Junior Member
    Join Date
    Apr 2007
    Liked
    0 times
    Posts
    39

    Talking

    thats a piece of CRAP:2guns:

Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Next version of Microsoft SQL Server under development
    By meetdilip in forum Software News, Previews and Reviews
    Replies: 0
    Last Post: 02-15-10, 11:16 PM
  2. Google Buzz : Mobile Version
    By meetdilip in forum Software News, Previews and Reviews
    Replies: 0
    Last Post: 02-11-10, 05:52 PM
  3. How to choose an affordable laptop
    By Preeti_20 in forum Laptop
    Replies: 0
    Last Post: 02-09-10, 07:23 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •