|
MCP
|
 |
« 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.  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
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.  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
|
 |
« 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.  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!  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
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.  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!  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
|
 |
« 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.  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!  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
|
 |
« 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.  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!  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?  MCP
|
|
|
|
|
Logged
|
|
|
|
Old-Polack
Administrator
Hero Member
   
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?  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
|
 |
« 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
|
|
|
|
|