PCLinuxOS-Forums
News: ...FLASH!!! ...New PCLinuxOS Testing board now open. Register today! Be an active contributor to the PCLinuxOS future! ... Read all about it now, on THIS forum!!!..
 
*
Welcome, Guest. Please login or register. May 24, 2012, 05:35:08 AM


Login with username, password and session length


Pages: [1]   Go Down
  Print  
Author Topic: How to Identify what is on what partition? <SOLVED>  (Read 678 times)
MCP
Sr. Member
****
Offline Offline

Posts: 290


« on: December 19, 2011, 07:48:55 PM »

I have a simple problem.  I have 4 physical hard drives which I have added over the years as larger disks became available.  I also have used different distro's before settling on PClinuxOS.  My current install is fully updated and running just fine.  Before I installed it I did install Win7 on another partition and before that I did use PCLOS2009.

Here's my dilemma, It's been so long since I've had to reinstall (pclos is so good) that I've forgotten where and on what partition everything is.  I know where some is because I put labels on those partitions. But I just looked at my drives in gparted and there are some which are not completely empty and are not labeled, so I don't know if I need it or if it can be deleted. Huh Huh Huh

Is there any easy and quick way to see just what each drive is used for?

Any help is greatly appreciated,
MCP
Logged
Old-Polack
Administrator
Hero Member
*****
Offline Offline

Posts: 9688


----IOFLU----


« Reply #1 on: December 19, 2011, 07:53:12 PM »

I have a simple problem.  I have 4 physical hard drives which I have added over the years as larger disks became available.  I also have used different distro's before settling on PClinuxOS.  My current install is fully updated and running just fine.  Before I installed it I did install Win7 on another partition and before that I did use PCLOS2009.

Here's my dilemma, It's been so long since I've had to reinstall (pclos is so good) that I've forgotten where and on what partition everything is.  I know where some is because I put labels on those partitions. But I just looked at my drives in gparted and there are some which are not completely empty and are not labeled, so I don't know if I need it or if it can be deleted. Huh Huh Huh

Is there any easy and quick way to see just what each drive is used for?

Any help is greatly appreciated,
MCP

Mount the partitions you are in doubt about, and have a look-see with your file manager.
Logged

Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...
MCP
Sr. Member
****
Offline Offline

Posts: 290


« Reply #2 on: December 19, 2011, 08:05:32 PM »

I have a simple problem.  I have 4 physical hard drives which I have added over the years as larger disks became available.  I also have used different distro's before settling on PClinuxOS.  My current install is fully updated and running just fine.  Before I installed it I did install Win7 on another partition and before that I did use PCLOS2009.

Here's my dilemma, It's been so long since I've had to reinstall (pclos is so good) that I've forgotten where and on what partition everything is.  I know where some is because I put labels on those partitions. But I just looked at my drives in gparted and there are some which are not completely empty and are not labeled, so I don't know if I need it or if it can be deleted. Huh Huh Huh

Is there any easy and quick way to see just what each drive is used for?

Any help is greatly appreciated,
MCP

Mount the partitions you are in doubt about, and have a look-see with your file manager.

OH!  That's too easy! Must be a harder way! Grin

I should have thought of that one.  But like I said I haven't had to reinstall for so long I've forgotten how to do things.

Thanks,
MCP
Logged
Old-Polack
Administrator
Hero Member
*****
Offline Offline

Posts: 9688


----IOFLU----


« Reply #3 on: December 19, 2011, 09:01:31 PM »

I have a simple problem.  I have 4 physical hard drives which I have added over the years as larger disks became available.  I also have used different distro's before settling on PClinuxOS.  My current install is fully updated and running just fine.  Before I installed it I did install Win7 on another partition and before that I did use PCLOS2009.

Here's my dilemma, It's been so long since I've had to reinstall (pclos is so good) that I've forgotten where and on what partition everything is.  I know where some is because I put labels on those partitions. But I just looked at my drives in gparted and there are some which are not completely empty and are not labeled, so I don't know if I need it or if it can be deleted. Huh Huh Huh

Is there any easy and quick way to see just what each drive is used for?

Any help is greatly appreciated,
MCP

Mount the partitions you are in doubt about, and have a look-see with your file manager.

OH!  That's too easy! Must be a harder way! Grin

I should have thought of that one.  But like I said I haven't had to reinstall for so long I've forgotten how to do things.

Thanks,
MCP

You could do it all from the command line...

[root@localhost ~]# mkdir -p /mnt/here              <Enter>

[root@localhost ~]# mount /dev/<whatever> /mnt/here                     <Enter>

[root@localhost ~]# ls -l /mnt/here                <Enter>

[root@localhost ~]# umount /mnt/here                     <Enter>

[root@localhost ~]# mount /dev/<next whatever> /mnt/here                <Enter>

Rinse, and repeat, until all partitions contents are revealed.

The nice thing with this way is a consistent mount point, and not having to click your way through the GUI file manager with each partition. It's what I do when I want to check a partition. I always have /mnt/here and /mnt/there directories handy, in case I want to mount two partitions temporarily and copy some files from one to the other.

Logged

Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...
MCP
Sr. Member
****
Offline Offline

Posts: 290


« Reply #4 on: December 20, 2011, 12:38:41 PM »

I have a simple problem.  I have 4 physical hard drives which I have added over the years as larger disks became available.  I also have used different distro's before settling on PClinuxOS.  My current install is fully updated and running just fine.  Before I installed it I did install Win7 on another partition and before that I did use PCLOS2009.

Here's my dilemma, It's been so long since I've had to reinstall (pclos is so good) that I've forgotten where and on what partition everything is.  I know where some is because I put labels on those partitions. But I just looked at my drives in gparted and there are some which are not completely empty and are not labeled, so I don't know if I need it or if it can be deleted. Huh Huh Huh

Is there any easy and quick way to see just what each drive is used for?

Any help is greatly appreciated,
MCP

Mount the partitions you are in doubt about, and have a look-see with your file manager.

OH!  That's too easy! Must be a harder way! Grin

I should have thought of that one.  But like I said I haven't had to reinstall for so long I've forgotten how to do things.

Thanks,
MCP

You could do it all from the command line...

[root@localhost ~]# mkdir -p /mnt/here              <Enter>

[root@localhost ~]# mount /dev/<whatever> /mnt/here                     <Enter>

[root@localhost ~]# ls -l /mnt/here                <Enter>

[root@localhost ~]# umount /mnt/here                     <Enter>

[root@localhost ~]# mount /dev/<next whatever> /mnt/here                <Enter>

Rinse, and repeat, until all partitions contents are revealed.

The nice thing with this way is a consistent mount point, and not having to click your way through the GUI file manager with each partition. It's what I do when I want to check a partition. I always have /mnt/here and /mnt/there directories handy, in case I want to mount two partitions temporarily and copy some files from one to the other.



That looks like a great and easy way to do it.  I'll give it a try.

Thanks,
MCP
Logged
MCP
Sr. Member
****
Offline Offline

Posts: 290


« Reply #5 on: December 22, 2011, 09:41:13 PM »

I have a simple problem.  I have 4 physical hard drives which I have added over the years as larger disks became available.  I also have used different distro's before settling on PClinuxOS.  My current install is fully updated and running just fine.  Before I installed it I did install Win7 on another partition and before that I did use PCLOS2009.

Here's my dilemma, It's been so long since I've had to reinstall (pclos is so good) that I've forgotten where and on what partition everything is.  I know where some is because I put labels on those partitions. But I just looked at my drives in gparted and there are some which are not completely empty and are not labeled, so I don't know if I need it or if it can be deleted. Huh Huh Huh

Is there any easy and quick way to see just what each drive is used for?

Any help is greatly appreciated,
MCP

Mount the partitions you are in doubt about, and have a look-see with your file manager.

OH!  That's too easy! Must be a harder way! Grin

I should have thought of that one.  But like I said I haven't had to reinstall for so long I've forgotten how to do things.

Thanks,
MCP

You could do it all from the command line...

[root@localhost ~]# mkdir -p /mnt/here              <Enter>

[root@localhost ~]# mount /dev/<whatever> /mnt/here                     <Enter>

[root@localhost ~]# ls -l /mnt/here                <Enter>

[root@localhost ~]# umount /mnt/here                     <Enter>

[root@localhost ~]# mount /dev/<next whatever> /mnt/here                <Enter>

Rinse, and repeat, until all partitions contents are revealed.

The nice thing with this way is a consistent mount point, and not having to click your way through the GUI file manager with each partition. It's what I do when I want to check a partition. I always have /mnt/here and /mnt/there directories handy, in case I want to mount two partitions temporarily and copy some files from one to the other.



That looks like a great and easy way to do it.  I'll give it a try.

Thanks,
MCP

Just had to post back and say Thanks O.P. that worked great. Now just a small problem.  I have several partitions with distro's that I no longer use and need.  Can I delete or combine them with out adversely affecting the remaining partitions which I still use? Huh

MCP
Logged
Old-Polack
Administrator
Hero Member
*****
Offline Offline

Posts: 9688


----IOFLU----


« Reply #6 on: December 22, 2011, 09:49:12 PM »

Just had to post back and say Thanks O.P. that worked great. Now just a small problem.  I have several partitions with distro's that I no longer use and need.  Can I delete or combine them with out adversely affecting the remaining partitions which I still use? Huh

MCP

What I would do is just reformat those partitions, and if you have nothing to install on them, mount them somewhere and use them as data containers. I have separate partitions for videos I d/l, others for music, one that has only liveCD images, one for regular backups, and another for short term backups.
Logged

Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...
Vortеx
Hero Member
*****
Offline Offline

Posts: 2010


Vorteks without the Secretary


« Reply #7 on: December 31, 2011, 09:58:27 AM »

If you erase a partition and if a given distro is installed on a partition after the erased one then it gets different partition number (because of renumbering that system do) from what you have already in your booting file menu.lst.
Hence it will not boot until you change that number. But it's easily done.
Logged
Pages: [1]   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM