There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
acer audio black screen blue screen boot computer connection crash css dell drive driver drivers email error ethernet excel explorer firefox firefox 3 hard drive internet internet explorer itunes laptop linux malware network networking outlook outlook 2003 outlook express password printer problem problems ram router security slow software sound trojan usb virus vista windows windows vista windows xp wireless
UNIX/Linux
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Operating Systems > UNIX/Linux >
XP + Ubuntu & novice


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

Closed Thread
 
Thread Tools
ia1980's Avatar
Member with 40 posts.
 
Join Date: Jun 2005
Experience: Beginner
07-Jan-2006, 06:09 PM #1
XP + Ubuntu & novice
I tried to post this before but obviously made a mistake so I am copying and pasting from the initial word document that I wrote before posting - i was trying to make sure that I did not miss anything- SO HERE IT GOES again


everyone talks about linux being so good SO i have
decided to take a chance.

I have a PC where due to the kids I have to reinstall
XP so I have got Ubuntu 5.10 (which actually comes on
2 CDS - install CD and live CD) and plan to have dual
boot and have partition on the hard drive (60 G -40
for XP and 20 for linux) - i hope this means that
whatever is saved on linux side would be seperate from
XP and vice versa

What do I use PC for !

I plan to have open office on linux side and MS office
on the XP side for mainly word processing but occ
other bits of office- apart from that I would be
connecting to the net (with AOL) - hotsync Palm T5 (I
expect that to be on the XP side but if it can be done
on linux side I don't mind but the CD which came with
palm says windows and does not mention linux) - store
and edit pictures (that brings me to the point, Do
Ubuntu CDs have editing software or do I need to
download one and if so which one and from where) and
play occ game (not high tech one usually to spend
spare time - i tend to paly mahjong type) and the PC
has DVD +/- RW (although I have never written or
copied a CD or DVD but may do) so would the Linux have
a program for it like XP does or do i download it and
from where and that is my use of the PC

Sorry two more things - 1 is it easy to install new
programs onto linux (obviously copied or downloaded
from linux websites) and 2- Can I save linux data onto
a usb memory key - again I mean does it have the
software or do I need to download it and from where

SO what I am asking you is two things FIRST to answer
these questions and to help me on the way

I am a medical doctor (wrong side of 40s as well) SO a
complete novice and require STEP by STEP instructions
to install both systems and partioning the HD and how
to uninstall the linux without affecting the files etc
on the other side.

I am sure I say on behalf of a lot of us who wish to
try but are afraid to mess up the XP, maybe one of the
experts on the forum give step by step instructions
which can then be printed and kept in front while
installing the whole system

Thanks
saikee's Avatar
Distinguished Member with 2,515 posts.
 
Join Date: Jun 2004
Location: Newcastle
Experience: A Linux user gone nuts on multi-boot
07-Jan-2006, 08:19 PM #2
There is no risk of XP being messed up by Linux because

(1) You cannot but install them in separate partitions. To put a LInux inside XP you need a very special distro and Ubnuntu is not one of them.

(2) XP and all MS systems do not support Linux and so none of them would mount a Linux partition for you to work across two systems. So no damage possible from the XP side.

(3) Linux currently refrains from writing on a NTFS partition that XP uses. It can read it only but can read/write all the other MS partition types. Theoretically you can't use a Linux to damage a XP system.

Most of the problems is to do with booting because we learn nothing in booting with MS systems. However Linux has super ability in booting several systems and simple steps are available to solve any booting booting problem,. especially with the help from the forum.

Since you have a Live CD from Unbuntu you can load it up to see if everything works first. The Unbuntu Live CD is not installable and you need to run the other CD if you start the installation.

20Gb is ample. You need two partitions. One 10Gb large for Ubuntu and 1Gb for Swap, which is a scratch working area. You should partition the hard disk using the Live CD. The best way, in my opinion, in to use the command prompt by clicking system, then terminal.

Ubuntu operates a security system whereby the commands affecting the system are privileged and require "sudo" added to the front in order to invoke the admin rights.

Therefore if you want to see the partition of your hard disk the standard command is
Code:
sudo fdisk -l
To partition your hard disk hda you use
Code:
sudo cfdisk /dev/hda
You can try the partition program "cfdisk" on device "hda". Nothing will be implemented until you click "write". You will see Linux automatically assign partition ID "83" for its own occupation and partition ID 82 is reserved for Swap. XP partition will have ID 7. Fat32 will have ID b. These are extra things you need to learn because you are using 2 systems.

Have an exploration first and let us know if you are ready to start.

In Ubuntu you can see your XP partition as follow ( I assume you have a IDE disk and known as hda in Linux. As a rule XP will grab the first primary partition known as hda1. If you use a Sata hard drive it will show up as sda). You basically "make" a temporary directory in Linux's /mnt directory, "mount" the device partition hda1 on it. Thereafter you can goto the graphic desktop to see the photos, play MP3 music stored in the XP with Ubuntu. The commands to make the directory and mount it are
Code:
mkdir /mnt/hda1
mount /dev/hda1 /mnt/hda2
When you log off the XP partition will be automatically dismounted. You will see everything in the XP partition can be read but not witten. To transfer data between the 2 systems to need a "neutral partition" in Fat32 that both XP and Linux can read and write.

Thus it may be a good idea to use the balance of the 20Gb for making a data partition in FAT32.

Lastly a hard disk can have a maximum of 4 primary partitions. According to your information you can have
hda1 as the existing XP partition type 7
hda2 as the new Linux partition type 83 for Ubuntu
hda3 as the new Swap type 82 and
hda4 as a new data partition in Fat32 type b

All as primaries. If you have other existing partitions then the last 3 can reside in logical partitions.

In a hard disk one primary must be given up to form an extended partition inside which a maximum of 59 logical partitions may be created for an IDE disk. A Sata disk can have a maximum of 11 logical partitions. Users normally use up the space before the maximum number of partitions is reached.
__________________
A newbie entered Linux wonderland in Jun 2004, now a converted Linux user - No. 361921
Using a Linux live CD to clone XP
To install Linux and keep Windows MBR untouched
Adding extra Linux & Doing it in a lazy way
A Grub menu booting 100+ systems & & A "Howto" to install and boot 145 systems
Just booting tips A collection of booting tips
Judge told Linux "You are charged of murdering Windoze by stabbing its heart with a weapon, what was it? Linux replied "A Live CD"
ia1980's Avatar
Member with 40 posts.
 
Join Date: Jun 2005
Experience: Beginner
13-Jan-2006, 10:30 AM #3
Thanks Saikee
I'll do it over the weekend and comeback if I run into problems
Closed Thread

THIS THREAD HAS EXPIRED.
Are you having the same problem? We have volunteers ready to answer your question, but first you'll have to join for free. Need help getting started? Check out our Welcome Guide.


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
WELCOME TO TECH SUPPORT GUY! Are you looking for the solution to your computer problem? Join our site today to ask your question -- for free! Our site is run completely by volunteers who help people like you solve computer problems. See our Welcome Guide to get started.



Thread Tools


You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 04:22 PM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.