Ubuntu on vmWare: added a new disk, unable to find it
up vote
0
down vote
favorite
The vmware sysadmin added a new disk to a existing (and running) virtual machine with ubuntu.
I paste here info about common command used to understand drive mappings
Info from vmware console
Hard disk 1 - 80 GB - Scsi 0:0
Hard disk 2 - 200 GB - Scsi 0:1
Hard disk 3 - 80 GB - Scsi 0:2
The third disk is new new one
I need to format and mount.
More infos follow.
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
cat /proc/partitions
major minor #blocks name
11 0 1048575 sr0
2 0 4 fd0
8 0 83886080 sda
8 1 498688 sda1
8 2 1 sda2
8 5 83384320 sda5
8 16 209715200 sdb
8 17 208983351 sdb1
252 0 82333696 dm-0
252 1 1048576 dm-1
$ ls /dev/sd*
/dev/sda /dev/sda1 /dev/sda2 /dev/sda5 /dev/sdb /dev/sdb1
sudo rescan-scsi-bus.sh
Scanning SCSI subsystem for new devices
Scanning host 0 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning host 1 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 1 0 0 0 ...
OLD: Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: NECVMWar Model: VMware IDE CDR10 Rev: 1.00
Type: CD-ROM ANSI SCSI revision: 05
Scanning host 2 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 2 0 0 0 ...
OLD: Host: scsi2 Channel: 00 Id: 00 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
Scanning for device 2 0 1 0 ...
OLD: Host: scsi2 Channel: 00 Id: 01 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
0 new or changed device(s) found.
0 remapped or resized device(s) found.
0 device(s) removed.
sudo fdisk -l
Disk /dev/sda: 80 GiB, 85899345920 bytes, 167772160 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x03aba350
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sda1 * 2048 999423 997376 487M 83 Linux
/dev/sda2 1001470 167770111 166768642 79,5G 5 Esteso
/dev/sda5 1001472 167770111 166768640 79,5G 8e Linux LVM
Disk /dev/sdb: 200 GiB, 214748364800 bytes, 419430400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x78a76f80
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sdb1 2048 417968750 417966703 199,3G 83 Linux
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-root: 78,5 GiB, 84309704704 bytes, 164667392 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-swap_1: 1 GiB, 1073741824 bytes, 2097152 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
sudo lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
fd0
sda
├─sda1 ext2 5ad72be2-9e4e-4ccc-971f-8efa938b7a57 /boot
├─sda2
└─sda5 LVM2_member Afot5Y-kyl3-QesZ-sMgg-dmiL-38dK-kKZJZP
├─ubuntu--1604--64--ftp--vg-root ext4 eb40816a-26a9-4507-878e-e2fb4de57b37 /
└─ubuntu--1604--64--ftp--vg-swap_1 swap 935d9909-e290-4229-9c47-e67aa1516709 [SWAP]
sdb
└─sdb1 ext4 506cf3de-d2da-4970-a2ac-e823eba06987 /bacula
sr0
Problem
I have no idea how to find the new device, to format and mount it.
How can I detect new added hardrive?
I've not a previous output of none of these command list of
- ls /dev/sd*
So I'm here to ask your help
mount vmware
|
show 4 more comments
up vote
0
down vote
favorite
The vmware sysadmin added a new disk to a existing (and running) virtual machine with ubuntu.
I paste here info about common command used to understand drive mappings
Info from vmware console
Hard disk 1 - 80 GB - Scsi 0:0
Hard disk 2 - 200 GB - Scsi 0:1
Hard disk 3 - 80 GB - Scsi 0:2
The third disk is new new one
I need to format and mount.
More infos follow.
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
cat /proc/partitions
major minor #blocks name
11 0 1048575 sr0
2 0 4 fd0
8 0 83886080 sda
8 1 498688 sda1
8 2 1 sda2
8 5 83384320 sda5
8 16 209715200 sdb
8 17 208983351 sdb1
252 0 82333696 dm-0
252 1 1048576 dm-1
$ ls /dev/sd*
/dev/sda /dev/sda1 /dev/sda2 /dev/sda5 /dev/sdb /dev/sdb1
sudo rescan-scsi-bus.sh
Scanning SCSI subsystem for new devices
Scanning host 0 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning host 1 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 1 0 0 0 ...
OLD: Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: NECVMWar Model: VMware IDE CDR10 Rev: 1.00
Type: CD-ROM ANSI SCSI revision: 05
Scanning host 2 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 2 0 0 0 ...
OLD: Host: scsi2 Channel: 00 Id: 00 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
Scanning for device 2 0 1 0 ...
OLD: Host: scsi2 Channel: 00 Id: 01 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
0 new or changed device(s) found.
0 remapped or resized device(s) found.
0 device(s) removed.
sudo fdisk -l
Disk /dev/sda: 80 GiB, 85899345920 bytes, 167772160 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x03aba350
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sda1 * 2048 999423 997376 487M 83 Linux
/dev/sda2 1001470 167770111 166768642 79,5G 5 Esteso
/dev/sda5 1001472 167770111 166768640 79,5G 8e Linux LVM
Disk /dev/sdb: 200 GiB, 214748364800 bytes, 419430400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x78a76f80
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sdb1 2048 417968750 417966703 199,3G 83 Linux
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-root: 78,5 GiB, 84309704704 bytes, 164667392 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-swap_1: 1 GiB, 1073741824 bytes, 2097152 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
sudo lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
fd0
sda
├─sda1 ext2 5ad72be2-9e4e-4ccc-971f-8efa938b7a57 /boot
├─sda2
└─sda5 LVM2_member Afot5Y-kyl3-QesZ-sMgg-dmiL-38dK-kKZJZP
├─ubuntu--1604--64--ftp--vg-root ext4 eb40816a-26a9-4507-878e-e2fb4de57b37 /
└─ubuntu--1604--64--ftp--vg-swap_1 swap 935d9909-e290-4229-9c47-e67aa1516709 [SWAP]
sdb
└─sdb1 ext4 506cf3de-d2da-4970-a2ac-e823eba06987 /bacula
sr0
Problem
I have no idea how to find the new device, to format and mount it.
How can I detect new added hardrive?
I've not a previous output of none of these command list of
- ls /dev/sd*
So I'm here to ask your help
mount vmware
1
what doessudo lsblk -f
say?
– George Udosen
Dec 5 at 8:54
@GeorgeUdosen: added requested info, thanks
– realtebo
Dec 5 at 8:57
1
so i guess the/dev/sdb
is the device your looking for?
– George Udosen
Dec 5 at 8:58
How do you guess it? /dev/sdb already has a sdb1 (/bacula) and this folder/mount point was already here since years
– realtebo
Dec 5 at 8:59
1
Please get back to your admin have them recheck the addition!
– George Udosen
Dec 6 at 6:28
|
show 4 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
The vmware sysadmin added a new disk to a existing (and running) virtual machine with ubuntu.
I paste here info about common command used to understand drive mappings
Info from vmware console
Hard disk 1 - 80 GB - Scsi 0:0
Hard disk 2 - 200 GB - Scsi 0:1
Hard disk 3 - 80 GB - Scsi 0:2
The third disk is new new one
I need to format and mount.
More infos follow.
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
cat /proc/partitions
major minor #blocks name
11 0 1048575 sr0
2 0 4 fd0
8 0 83886080 sda
8 1 498688 sda1
8 2 1 sda2
8 5 83384320 sda5
8 16 209715200 sdb
8 17 208983351 sdb1
252 0 82333696 dm-0
252 1 1048576 dm-1
$ ls /dev/sd*
/dev/sda /dev/sda1 /dev/sda2 /dev/sda5 /dev/sdb /dev/sdb1
sudo rescan-scsi-bus.sh
Scanning SCSI subsystem for new devices
Scanning host 0 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning host 1 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 1 0 0 0 ...
OLD: Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: NECVMWar Model: VMware IDE CDR10 Rev: 1.00
Type: CD-ROM ANSI SCSI revision: 05
Scanning host 2 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 2 0 0 0 ...
OLD: Host: scsi2 Channel: 00 Id: 00 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
Scanning for device 2 0 1 0 ...
OLD: Host: scsi2 Channel: 00 Id: 01 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
0 new or changed device(s) found.
0 remapped or resized device(s) found.
0 device(s) removed.
sudo fdisk -l
Disk /dev/sda: 80 GiB, 85899345920 bytes, 167772160 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x03aba350
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sda1 * 2048 999423 997376 487M 83 Linux
/dev/sda2 1001470 167770111 166768642 79,5G 5 Esteso
/dev/sda5 1001472 167770111 166768640 79,5G 8e Linux LVM
Disk /dev/sdb: 200 GiB, 214748364800 bytes, 419430400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x78a76f80
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sdb1 2048 417968750 417966703 199,3G 83 Linux
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-root: 78,5 GiB, 84309704704 bytes, 164667392 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-swap_1: 1 GiB, 1073741824 bytes, 2097152 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
sudo lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
fd0
sda
├─sda1 ext2 5ad72be2-9e4e-4ccc-971f-8efa938b7a57 /boot
├─sda2
└─sda5 LVM2_member Afot5Y-kyl3-QesZ-sMgg-dmiL-38dK-kKZJZP
├─ubuntu--1604--64--ftp--vg-root ext4 eb40816a-26a9-4507-878e-e2fb4de57b37 /
└─ubuntu--1604--64--ftp--vg-swap_1 swap 935d9909-e290-4229-9c47-e67aa1516709 [SWAP]
sdb
└─sdb1 ext4 506cf3de-d2da-4970-a2ac-e823eba06987 /bacula
sr0
Problem
I have no idea how to find the new device, to format and mount it.
How can I detect new added hardrive?
I've not a previous output of none of these command list of
- ls /dev/sd*
So I'm here to ask your help
mount vmware
The vmware sysadmin added a new disk to a existing (and running) virtual machine with ubuntu.
I paste here info about common command used to understand drive mappings
Info from vmware console
Hard disk 1 - 80 GB - Scsi 0:0
Hard disk 2 - 200 GB - Scsi 0:1
Hard disk 3 - 80 GB - Scsi 0:2
The third disk is new new one
I need to format and mount.
More infos follow.
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
cat /proc/partitions
major minor #blocks name
11 0 1048575 sr0
2 0 4 fd0
8 0 83886080 sda
8 1 498688 sda1
8 2 1 sda2
8 5 83384320 sda5
8 16 209715200 sdb
8 17 208983351 sdb1
252 0 82333696 dm-0
252 1 1048576 dm-1
$ ls /dev/sd*
/dev/sda /dev/sda1 /dev/sda2 /dev/sda5 /dev/sdb /dev/sdb1
sudo rescan-scsi-bus.sh
Scanning SCSI subsystem for new devices
Scanning host 0 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning host 1 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 1 0 0 0 ...
OLD: Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: NECVMWar Model: VMware IDE CDR10 Rev: 1.00
Type: CD-ROM ANSI SCSI revision: 05
Scanning host 2 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs
Scanning for device 2 0 0 0 ...
OLD: Host: scsi2 Channel: 00 Id: 00 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
Scanning for device 2 0 1 0 ...
OLD: Host: scsi2 Channel: 00 Id: 01 Lun: 00
Vendor: VMware Model: Virtual disk Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
0 new or changed device(s) found.
0 remapped or resized device(s) found.
0 device(s) removed.
sudo fdisk -l
Disk /dev/sda: 80 GiB, 85899345920 bytes, 167772160 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x03aba350
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sda1 * 2048 999423 997376 487M 83 Linux
/dev/sda2 1001470 167770111 166768642 79,5G 5 Esteso
/dev/sda5 1001472 167770111 166768640 79,5G 8e Linux LVM
Disk /dev/sdb: 200 GiB, 214748364800 bytes, 419430400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x78a76f80
Dispositivo Avvio Start Fine Settori Size Id Tipo
/dev/sdb1 2048 417968750 417966703 199,3G 83 Linux
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-root: 78,5 GiB, 84309704704 bytes, 164667392 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/ubuntu--1604--64--ftp--vg-swap_1: 1 GiB, 1073741824 bytes, 2097152 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
sudo lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
fd0
sda
├─sda1 ext2 5ad72be2-9e4e-4ccc-971f-8efa938b7a57 /boot
├─sda2
└─sda5 LVM2_member Afot5Y-kyl3-QesZ-sMgg-dmiL-38dK-kKZJZP
├─ubuntu--1604--64--ftp--vg-root ext4 eb40816a-26a9-4507-878e-e2fb4de57b37 /
└─ubuntu--1604--64--ftp--vg-swap_1 swap 935d9909-e290-4229-9c47-e67aa1516709 [SWAP]
sdb
└─sdb1 ext4 506cf3de-d2da-4970-a2ac-e823eba06987 /bacula
sr0
Problem
I have no idea how to find the new device, to format and mount it.
How can I detect new added hardrive?
I've not a previous output of none of these command list of
- ls /dev/sd*
So I'm here to ask your help
mount vmware
mount vmware
edited Dec 5 at 8:58
asked Dec 5 at 8:46
realtebo
203114
203114
1
what doessudo lsblk -f
say?
– George Udosen
Dec 5 at 8:54
@GeorgeUdosen: added requested info, thanks
– realtebo
Dec 5 at 8:57
1
so i guess the/dev/sdb
is the device your looking for?
– George Udosen
Dec 5 at 8:58
How do you guess it? /dev/sdb already has a sdb1 (/bacula) and this folder/mount point was already here since years
– realtebo
Dec 5 at 8:59
1
Please get back to your admin have them recheck the addition!
– George Udosen
Dec 6 at 6:28
|
show 4 more comments
1
what doessudo lsblk -f
say?
– George Udosen
Dec 5 at 8:54
@GeorgeUdosen: added requested info, thanks
– realtebo
Dec 5 at 8:57
1
so i guess the/dev/sdb
is the device your looking for?
– George Udosen
Dec 5 at 8:58
How do you guess it? /dev/sdb already has a sdb1 (/bacula) and this folder/mount point was already here since years
– realtebo
Dec 5 at 8:59
1
Please get back to your admin have them recheck the addition!
– George Udosen
Dec 6 at 6:28
1
1
what does
sudo lsblk -f
say?– George Udosen
Dec 5 at 8:54
what does
sudo lsblk -f
say?– George Udosen
Dec 5 at 8:54
@GeorgeUdosen: added requested info, thanks
– realtebo
Dec 5 at 8:57
@GeorgeUdosen: added requested info, thanks
– realtebo
Dec 5 at 8:57
1
1
so i guess the
/dev/sdb
is the device your looking for?– George Udosen
Dec 5 at 8:58
so i guess the
/dev/sdb
is the device your looking for?– George Udosen
Dec 5 at 8:58
How do you guess it? /dev/sdb already has a sdb1 (/bacula) and this folder/mount point was already here since years
– realtebo
Dec 5 at 8:59
How do you guess it? /dev/sdb already has a sdb1 (/bacula) and this folder/mount point was already here since years
– realtebo
Dec 5 at 8:59
1
1
Please get back to your admin have them recheck the addition!
– George Udosen
Dec 6 at 6:28
Please get back to your admin have them recheck the addition!
– George Udosen
Dec 6 at 6:28
|
show 4 more comments
1 Answer
1
active
oldest
votes
up vote
0
down vote
I can confirm that problem was hard disk not really added by sysadmin.
Sorry.
After succesfully adding a new HD, at SCSI 3:0 I can see it as /sdc1
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1098581%2fubuntu-on-vmware-added-a-new-disk-unable-to-find-it%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I can confirm that problem was hard disk not really added by sysadmin.
Sorry.
After succesfully adding a new HD, at SCSI 3:0 I can see it as /sdc1
add a comment |
up vote
0
down vote
I can confirm that problem was hard disk not really added by sysadmin.
Sorry.
After succesfully adding a new HD, at SCSI 3:0 I can see it as /sdc1
add a comment |
up vote
0
down vote
up vote
0
down vote
I can confirm that problem was hard disk not really added by sysadmin.
Sorry.
After succesfully adding a new HD, at SCSI 3:0 I can see it as /sdc1
I can confirm that problem was hard disk not really added by sysadmin.
Sorry.
After succesfully adding a new HD, at SCSI 3:0 I can see it as /sdc1
answered Dec 6 at 14:09
realtebo
203114
203114
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1098581%2fubuntu-on-vmware-added-a-new-disk-unable-to-find-it%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
what does
sudo lsblk -f
say?– George Udosen
Dec 5 at 8:54
@GeorgeUdosen: added requested info, thanks
– realtebo
Dec 5 at 8:57
1
so i guess the
/dev/sdb
is the device your looking for?– George Udosen
Dec 5 at 8:58
How do you guess it? /dev/sdb already has a sdb1 (/bacula) and this folder/mount point was already here since years
– realtebo
Dec 5 at 8:59
1
Please get back to your admin have them recheck the addition!
– George Udosen
Dec 6 at 6:28