Old disk disappear after additional new one on Linux FS


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Old disk disappear after additional new one on Linux FS
# 1  
Old 03-18-2020
Old disk disappear after additional new one on Linux FS

I want to increase the size of /testmount from 20GB to 320GB.

1. before
Code:
 
[root@testserver testmount]# df -h
Filesystem                                                                                  Size  Used Avail Use% Mounted on
...
/dev/sda3                                                                                    15G   10G  3.0G  74% /
/dev/sda1                                                                                   936M  191M  739M  20% /boot
/dev/sda2                                                                                    20G   15G  2.1G  93% /testmount
/dev/sda6                                                                                   6.8G   36M  6.5G   1% /tmp
...

2. Steps done to After partitioning /dev/sdb with 1 partition sdb1 with size of 300GB. i ran the below commands.


Code:
[root@testserver testmount]# mkfs -t ext4 /dev/sdb1

[root@testserver testmount]# mount /dev/sdb1 /testmount


3. After steps

Code:
 
[root@testserver testmount]# df -h
Filesystem                                                                                  Size  Used Avail Use% Mounted on
...
/dev/sda3                                                                                    16G   11G  4.0G  74% /
/dev/sda1                                                                                   976M  181M  729M  20% /boot
/dev/sdb1                                                                                   296G   65M  281G   1% /testmount                 <<<<<<< sda2 disappeared from /testmount 
/dev/sda6                                                                                   5.8G   36M  5.5G   1% /tmp
..

Why am I not able to see /dev/sda2 here?

What step am i missing? I am total newbie on Linux system admin matters. I looked at few tutorials, but didn't get the answer.

Last edited by rbatte1; 03-18-2020 at 09:54 AM..
# 2  
Old 03-18-2020
Looks like that you've mounted the new disk on /testmount and 'covered' the old disk mounted there.

You can only mount one disk on a single mountpoint.

If you umount sdb1 the old disk should reappear.

[Perhaps create a brand new mountpoint and mount sdb1 on that so you can see both at the same time.]
e.g.
Code:
# mkdir /newmount
# mount /dev/sdb1 /newmount

This User Gave Thanks to hicksd8 For This Post:
# 3  
Old 03-18-2020
As I understood you, you like to combine 2 parts of 2 different disks into one partition/filesystem. You can do that(e. g. by using lvm). But if you do, know that one of those 2 disks fail, the data are completely lost for that filesystem - and you should better have good and recently done backups. In my opinion that's not worth it just to be able to directly use that 20 GB of the first disk.

I would recommend you to just make a filesystem on the new disk with 300 GB and copy the old data to the new filesystem.

Then you may use the space on the other disk for other purposes.

Last edited by stomp; 03-18-2020 at 10:56 AM..
This User Gave Thanks to stomp For This Post:
# 4  
Old 03-19-2020
Thanks!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help: run with another user, env disappear

#!/bin/sh PATH_1=$PATH echo "PATH_1 is " $PATH_1 function user_func (){ whoami export PATH=$PATH_1:/usr/local/bin echo "PATH is" $PATH exit } export -f user_func su -m hadoop -c 'user_func' from out put, PATH is not set with PATH_1 append ( it's not another user to run the... (5 Replies)
Discussion started by: yanglei_fage
5 Replies

2. Red Hat

Make a disk disappear from fdisk output

Hello, 1 ) Fdisk -l # Displays all the disk with partition table information My Query ) A ) How can i make one disk ex: /dev/sdd not visible in fdisk -l output ? B) From where fdisk -l collect and display the information ? (8 Replies)
Discussion started by: saurabh84g
8 Replies

3. Linux

System Panel disappear.

Dear all, I lost my CentOS 6.4, Systems default bar/panel where we navigate our system for the Applications, Places & System, Is there anyone who can help me please??? (1 Reply)
Discussion started by: saqlain.bashir
1 Replies

4. Linux

C++ Code to Access Linux Hard Disk Sectors (with a LoopBack Virtual Hard Disk)

Hi all, I'm kind of new to programming in Linux & c/c++. I'm currently writing a FileManager using Ubuntu Linux(10.10) for Learning Purposes. I've got started on this project by creating a loopback device to be used as my virtual hard disk. After creating the loop back hard disk and mounting it... (23 Replies)
Discussion started by: shen747
23 Replies

5. UNIX and Linux Applications

mysql table disappear

I have set a mysql file to excute everyday morning to generate a html file displayng 2 tables from the database. Sometime they cannot be shown, and it shows the tables are not existed. I have not drop any table, and those 2 tables are not used by any other excution. Anybody know what is happening?... (0 Replies)
Discussion started by: c203040
0 Replies

6. Ubuntu

XP and Linux (Ubuntu) on same disk, Can I install Ubuntu on not-yet partitioned portion of disk?

My PC (Esprimo, 3 yeas old) has one hard drive having 2 partitions C: (80 GB NTFS, XP) and D: (120 GB NTFS, empty) and and a 200 MB area that yet is not-partitioned. I would like to try Ubuntu and to install Ubuntu on the not-partitioned area . The idea is to have the possibility to run... (7 Replies)
Discussion started by: C.Weidemann
7 Replies

7. Shell Programming and Scripting

Make the typed text disappear...

Hi all... I-m quite a new user of UNIX and i was trying to write a simple program and my problem is the following:how can i make a typed letter disappear (as we see in the MORE command, when we type <space>, b, q etc...) i know that for typing some text that has to be read it's used the structure:... (0 Replies)
Discussion started by: Cellofan
0 Replies

8. Filesystems, Disks and Memory

Automounted filesystems disappear

We have a Slackware 9.1 box that our ASP controls. We use it to see the logging of our Weblogic-clusters. All the logging is auto-mounted in /rmt which is fine, as long as you know the names of the mountpoints. When you don't access the mountpoints for a certain period of time, the mountpoint... (0 Replies)
Discussion started by: indo1144
0 Replies

9. Solaris

NFS file/dir disappear issue

We have bunch of Sun Sparc workstations(solaris 7 & 8) connecting to a linux file server with NFS exports. Recently we upgraded our file server from fedora core1 to redhat enterprise linux 4. And since then we are experiencing a nightmare of file/dir missing. It happens randomly, couple of times... (1 Reply)
Discussion started by: motor98
1 Replies
Login or Register to Ask a Question