LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE
User Name
Password
SUSE / openSUSE This Forum is for the discussion of Suse Linux.

Notices


Reply
  Search this Thread
Old 02-13-2005, 05:27 PM   #31
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33

Quote:
Originally posted by russell108
it asks " add partiton at begining of free space ?" i presumed yes
This is correct.


Quote:
.... it then asks "toggle bootable flag of current partition"
at which point i am at a loss
I don't think this should matter either way.
 
Old 02-14-2005, 04:05 PM   #32
russell108
LQ Newbie
 
Registered: Dec 2004
Posts: 27

Original Poster
Rep: Reputation: 15
Thanks for your help Sepero it worked !

I now have 80GB of free space ,all i need to do now is work out how to stick it onto my windows partition...hmmm
 
Old 02-15-2005, 07:59 AM   #33
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33
Wow, you actually did it! omigosh! I must admit, I had very little faith in you. Perhaps you might even run with the big penguins some day... nah!
(j/k )

You can only add Free Space to a partition if the Free Space is physically located directly behind that partition. So you will likely need to move your Linux partition to put Free Space behind Microsoft.

To move the partition will require actually making a complete copy of the partition, then deleting the original.
[list=1][*]Start cfdisk (cfdisk /dev/hda)[*]Select th Free Space at the end of your drive[*]Press "n"(for new partition)[*]Select "Logical"[*]Type in an amount equal to the partition you want to copy[*]Select "End"[*]Press "W". Then type "yes".[*]Enter the command `partprobe`(This will refresh your partitions without having to reboot)[*]Run a test for bad harddrive blocks:
badblocks -o bb.txt /dev/<new partition>[*]Create the new filesystem:
mkfs.reiserfs -B bb.txt /dev/<new partition>[*]Mount the new partition:
mount /dev/<new partition> /mnt/new_mount[*]Then copy over the files:
cp -aR /mnt/old_mount/* /mnt/new_mount[*]After you have verified that everything copied ok, you can delete then original partition. Also you will have to adjust /etc/fstab and your bootmanager to the new changes.[/list=1]
 
Old 02-17-2005, 04:23 PM   #34
russell108
LQ Newbie
 
Registered: Dec 2004
Posts: 27

Original Poster
Rep: Reputation: 15
Ok i get as far as creating the new logical partiton but cant seem to copy it....ie as far as step 7

( at no point is there an option to select "end" or "W" , my guess would be mine is a different version of cfdisk ,who knows ?)


basically " mkfs.reiserfs " was deemed a bad command and would not work...

Last edited by russell108; 02-17-2005 at 04:24 PM.
 
Old 02-18-2005, 07:23 AM   #35
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33
Quote:
Originally posted by russell108
Ok i get as far as creating the new logical partiton but cant seem to copy it....ie as far as step 7

( at no point is there an option to select "end" or "W" , my guess would be mine is a different version of cfdisk ,who knows ?)
No, after step 5, it will ask you if you want to put the new partition at the "Beginning" or "End" of the Free Space. You need to select "End". Then press capital "W" to write the changes to disk.
 
Old 02-21-2005, 04:19 PM   #36
russell108
LQ Newbie
 
Registered: Dec 2004
Posts: 27

Original Poster
Rep: Reputation: 15
OK done that ,having trouble mounting it now...


I typed in....... mount /dev/hda5 /mnt/new_mount

but would not work.. the spacing is correct ?
 
Old 02-22-2005, 08:23 PM   #37
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33
Quote:
Originally posted by russell108
I typed in....... mount /dev/hda5 /mnt/new_mount
Get an error like this?
mount: mount point /mnt/new_mount does not exist


If so, you need to create the directory:
mkdir /mnt/new_mount


BTW: I got kicked off the internet for a couple days
 
Old 02-26-2005, 04:19 PM   #38
russell108
LQ Newbie
 
Registered: Dec 2004
Posts: 27

Original Poster
Rep: Reputation: 15
Think it said bash or something...anyway i typed it in again and got this stuff


"Usage: mount -V : print version
: mount -h : print this help
: mount : list mounted file systems
: mount -1 : idem,including volume labels
So far the informational part.Next the mounting
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a[-t|-0]... :mount all stuff from etc/fstab
mount device :mount device at the known place "

Plus a load of other similar stuff all of which i dont understand

i'm assuming this means that it did not mount ?
 
Old 02-27-2005, 08:14 PM   #39
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33
If you got this:
Code:
Usage: mount....
<snip>
Then the command wasn't correctly entered.
 
Old 03-02-2005, 08:58 AM   #40
russell108
LQ Newbie
 
Registered: Dec 2004
Posts: 27

Original Poster
Rep: Reputation: 15
entered..."mount /dev/hda5 /mnt/new_mount"

and got...

"mount:mount point /mnt/ new mount does not exist"
 
Old 03-02-2005, 06:38 PM   #41
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33
Quote:
Originally posted by russell108
entered..."mount /dev/hda5 /mnt/new_mount"

and got...

"mount:mount point /mnt/ new mount does not exist"
Dude, I already posted that!!
Quote:
Originally posted by Sepero
Get an error like this?
mount: mount point /mnt/new_mount does not exist


If so, you need to create the directory:
mkdir /mnt/new_mount


BTW: I got kicked off the internet for a couple days
 
Old 03-03-2005, 04:09 PM   #42
russell108
LQ Newbie
 
Registered: Dec 2004
Posts: 27

Original Poster
Rep: Reputation: 15
Oh yeah sorry

Um i'll get back to you...* hangs head in shame*
 
Old 03-03-2005, 07:52 PM   #43
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33
It's ok, many people probably don't pay attention to what I say anyway.
 
Old 03-04-2005, 04:40 PM   #44
russell108
LQ Newbie
 
Registered: Dec 2004
Posts: 27

Original Poster
Rep: Reputation: 15
Ok i typed it in exactly right this time (mkdir /mnt/new_mount
) and nothing seemed to happen...

Maybe the partion is already mounted as its on the desktop with the other 2...


Also in the line..."cp -aR /mnt/old_mount/* /mnt/new_mount" is the asterisk to be typed in as is...or is that where hda5 should go ?

Last edited by russell108; 03-04-2005 at 04:41 PM.
 
Old 03-05-2005, 06:54 AM   #45
Sepero
Member
 
Registered: Jul 2004
Location: Tampa, Florida, USA
Distribution: Ubuntu
Posts: 734
Blog Entries: 1

Rep: Reputation: 33
Quote:
Originally posted by russell108
Ok i typed it in exactly right this time (mkdir /mnt/new_mount
) and nothing seemed to happen...
In Linux/unix, if a command reports nothing, that almost always means "it worked". To see all your mounted drives, just type "mount" by itself.


Quote:
Also in the line..."cp -aR /mnt/old_mount/* /mnt/new_mount" is the asterisk to be typed in as is...or is that where hda5 should go ?
as is

Last edited by Sepero; 03-05-2005 at 06:58 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Spell Checking CouchMaster Ubuntu 5 03-31-2005 02:10 PM
Your Spell-Checker Robert G. Hays LQ Suggestions & Feedback 4 03-23-2005 01:31 PM
Spell checker awsome!!!! Tux_Phoenix LQ Suggestions & Feedback 1 11-16-2004 05:53 PM
spell checking mindcry Linux - Software 5 10-09-2003 06:41 PM
vi spell-check? jeri Linux - General 2 09-01-2001 03:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE

All times are GMT -5. The time now is 07:11 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration