I can't find my other HDDnot showing 1TB HDD after installationHow to find a new HDDSwap HDD to change OS?How to wisely partition a 2TB HDD?how do I mount a second hard drive?Installing Ubuntu - Can't see my partitioned HDDCan't see SSD after dd from HDD to SSDWant to Run SSD + HDD Drives, Can't Access HDD

Which device is violating the 802.11n Wi-Fi standard?

GIMP using command line

Color coding Alerts

Is it possible to write Quake's fast InvSqrt() function in Rust?

Was X17 predicted before it was observed?

Is there a guide/reference for possible character hairstyles in D&D Forgotten Realms universe?

P-Channel MOSFET Inrush Current Limiting - Transistor burn issue

Set and extract individual bytes of a number (lowByte() and highByte())

Why give an android emotions?

A story in which God (the Christian god) is replaced

How do you say "to play Devil's advocate" in German?

My passport's Machine Readable Zone is damaged. How do I deal with it?

How long must a passport be valid when visiting Brazil as a US citizen?

Ideas for medieval currency

Summary Proceeding in New Zealand - Denying liability but not requesting a hearing

Can a transcendent matrix have an algebraic spectrum?

Is there any benefit of being treated as "professor" by students and admin?

Anacruses, Bar Lines, and Line Breaks

Is it normal to not be able to work 8 hours a day?

“Depend on abstractions, not on concretions” what is the exact meaning of this term

How much would we learn from observing an FTL starship fly by?

Does a buffer overflow vulnerability always mean a code execution vulnerability?

Quick test of quality of an econometrics textbook

What did Rex Kramer mean by routing the plane in Lake Michigan?



I can't find my other HDD


not showing 1TB HDD after installationHow to find a new HDDSwap HDD to change OS?How to wisely partition a 2TB HDD?how do I mount a second hard drive?Installing Ubuntu - Can't see my partitioned HDDCan't see SSD after dd from HDD to SSDWant to Run SSD + HDD Drives, Can't Access HDD






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









0


















New Ubuntu user here... I have Ubuntu on my 250GB SSD and I have another 500GB on my laptop that Ubuntu can't find. I'm not sure where or how to start finding it.










share|improve this question

























  • Typing lsblk in a terminal window should return a list of all the partitions on your system, including ones that are not mounted.

    – Organic Marble
    Oct 12 '17 at 1:55

















0


















New Ubuntu user here... I have Ubuntu on my 250GB SSD and I have another 500GB on my laptop that Ubuntu can't find. I'm not sure where or how to start finding it.










share|improve this question

























  • Typing lsblk in a terminal window should return a list of all the partitions on your system, including ones that are not mounted.

    – Organic Marble
    Oct 12 '17 at 1:55













0













0









0








New Ubuntu user here... I have Ubuntu on my 250GB SSD and I have another 500GB on my laptop that Ubuntu can't find. I'm not sure where or how to start finding it.










share|improve this question














New Ubuntu user here... I have Ubuntu on my 250GB SSD and I have another 500GB on my laptop that Ubuntu can't find. I'm not sure where or how to start finding it.







hard-drive






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 12 '17 at 1:38









NotThatGoodNotThatGood

11 silver badge2 bronze badges




11 silver badge2 bronze badges















  • Typing lsblk in a terminal window should return a list of all the partitions on your system, including ones that are not mounted.

    – Organic Marble
    Oct 12 '17 at 1:55

















  • Typing lsblk in a terminal window should return a list of all the partitions on your system, including ones that are not mounted.

    – Organic Marble
    Oct 12 '17 at 1:55
















Typing lsblk in a terminal window should return a list of all the partitions on your system, including ones that are not mounted.

– Organic Marble
Oct 12 '17 at 1:55





Typing lsblk in a terminal window should return a list of all the partitions on your system, including ones that are not mounted.

– Organic Marble
Oct 12 '17 at 1:55










1 Answer
1






active

oldest

votes


















3



















You might need to edit your /etc/fstab to mount your extra drive. Here's how you can check.



Type lsblk into a terminal like Organic Marble suggested. Devices named like sda, sdb, and sdc are going to be distinct drives, while sda1, sda2, etc are partitions of that drive.



If your drive isn't showing up in lsblk, then someone more experienced than I will need to answer your question. I'd guess it means that your drive isn't connected properly, but I don't know for sure.



However, if you do see a drive that's showing up in lsblk, but doesn't have a MOUNTPOINT, then we can likely assume that it's your drive, and we can follow a few simple steps to get it set up. Let's assume that your device is sdb.



First, figure out which partition of your 500gb drive you want to mount. If you have multiple partitions, then you'll need to do this for each partition. Let's assume you want sdb1.



Next, you need to figure out where you want to mount the partition to. I usually end up mounting all of my drives in the /media directory, with a subdirectory for the partition. for example, my local network share is mounted in /media/fileshare. Either way, decide where you want to mount this partition, and create a folder for it, like this: sudo mkdir -p /path/to/mount/directory.



Next you need to figure out the filesystem type. Type sudo parted -l to get a list of all drives connected to the computer. Find the drive in the list that matches your drive. The partitions will be listed starting at 1; note the column for 'file system'. Let's assume yours is ext4.



Now, open your /etc/fstab file with root permissions using your favorite text editor. Nano is pretty easy to use: sudo nano /etc/fstab. The fstab file contains information about all the drives that get mounted to your computer and tells the OS how and where to mount them. You should see a couple lines in there which correlate to your main drive as well as your swap space. You want to add a new line sort of like this one, but with whatever the values you came up with are:



# partition mount location filesystem options dump pass
/dev/sdb1 /media/fileshare ext4 defaults, 0 2


Where the defaults refers to all of the default options found here. I'm no expert on fstab options, but someone else might be able to help you more here.



Now, save and quit whatever text editor you used, and run the command sudo mount -a; this re-mounts all partitions found in fstab. Assuming you did everything right, your partition should be mounted, and you should be able to access your files from whatever mount point you specified in the fstab file.






share|improve this answer



























  • Hey here's a screen shot of my terminal [i.imgur.com/YTboM8t.png]. I think "sdb" is the 500 gb hardrive with "core" (idk what that is). Oh on "loop1" I have the Atom that I can't run when I click the icon but runs when I 'sudo atom' in the terminal.

    – NotThatGood
    Oct 12 '17 at 4:36











  • Looks like sdb1 is the partition you want to mount. For sudo parted, you want to use -l (lowercase L), not -1 (the numeral one).

    – carusot42
    Oct 12 '17 at 15:38











  • @NotThatGood, did you get this working?

    – carusot42
    Oct 13 '17 at 17:31












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',
autoActivateHeartbeat: false,
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/4.0/"u003ecc by-sa 4.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
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f964087%2fi-cant-find-my-other-hdd%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









3



















You might need to edit your /etc/fstab to mount your extra drive. Here's how you can check.



Type lsblk into a terminal like Organic Marble suggested. Devices named like sda, sdb, and sdc are going to be distinct drives, while sda1, sda2, etc are partitions of that drive.



If your drive isn't showing up in lsblk, then someone more experienced than I will need to answer your question. I'd guess it means that your drive isn't connected properly, but I don't know for sure.



However, if you do see a drive that's showing up in lsblk, but doesn't have a MOUNTPOINT, then we can likely assume that it's your drive, and we can follow a few simple steps to get it set up. Let's assume that your device is sdb.



First, figure out which partition of your 500gb drive you want to mount. If you have multiple partitions, then you'll need to do this for each partition. Let's assume you want sdb1.



Next, you need to figure out where you want to mount the partition to. I usually end up mounting all of my drives in the /media directory, with a subdirectory for the partition. for example, my local network share is mounted in /media/fileshare. Either way, decide where you want to mount this partition, and create a folder for it, like this: sudo mkdir -p /path/to/mount/directory.



Next you need to figure out the filesystem type. Type sudo parted -l to get a list of all drives connected to the computer. Find the drive in the list that matches your drive. The partitions will be listed starting at 1; note the column for 'file system'. Let's assume yours is ext4.



Now, open your /etc/fstab file with root permissions using your favorite text editor. Nano is pretty easy to use: sudo nano /etc/fstab. The fstab file contains information about all the drives that get mounted to your computer and tells the OS how and where to mount them. You should see a couple lines in there which correlate to your main drive as well as your swap space. You want to add a new line sort of like this one, but with whatever the values you came up with are:



# partition mount location filesystem options dump pass
/dev/sdb1 /media/fileshare ext4 defaults, 0 2


Where the defaults refers to all of the default options found here. I'm no expert on fstab options, but someone else might be able to help you more here.



Now, save and quit whatever text editor you used, and run the command sudo mount -a; this re-mounts all partitions found in fstab. Assuming you did everything right, your partition should be mounted, and you should be able to access your files from whatever mount point you specified in the fstab file.






share|improve this answer



























  • Hey here's a screen shot of my terminal [i.imgur.com/YTboM8t.png]. I think "sdb" is the 500 gb hardrive with "core" (idk what that is). Oh on "loop1" I have the Atom that I can't run when I click the icon but runs when I 'sudo atom' in the terminal.

    – NotThatGood
    Oct 12 '17 at 4:36











  • Looks like sdb1 is the partition you want to mount. For sudo parted, you want to use -l (lowercase L), not -1 (the numeral one).

    – carusot42
    Oct 12 '17 at 15:38











  • @NotThatGood, did you get this working?

    – carusot42
    Oct 13 '17 at 17:31















3



















You might need to edit your /etc/fstab to mount your extra drive. Here's how you can check.



Type lsblk into a terminal like Organic Marble suggested. Devices named like sda, sdb, and sdc are going to be distinct drives, while sda1, sda2, etc are partitions of that drive.



If your drive isn't showing up in lsblk, then someone more experienced than I will need to answer your question. I'd guess it means that your drive isn't connected properly, but I don't know for sure.



However, if you do see a drive that's showing up in lsblk, but doesn't have a MOUNTPOINT, then we can likely assume that it's your drive, and we can follow a few simple steps to get it set up. Let's assume that your device is sdb.



First, figure out which partition of your 500gb drive you want to mount. If you have multiple partitions, then you'll need to do this for each partition. Let's assume you want sdb1.



Next, you need to figure out where you want to mount the partition to. I usually end up mounting all of my drives in the /media directory, with a subdirectory for the partition. for example, my local network share is mounted in /media/fileshare. Either way, decide where you want to mount this partition, and create a folder for it, like this: sudo mkdir -p /path/to/mount/directory.



Next you need to figure out the filesystem type. Type sudo parted -l to get a list of all drives connected to the computer. Find the drive in the list that matches your drive. The partitions will be listed starting at 1; note the column for 'file system'. Let's assume yours is ext4.



Now, open your /etc/fstab file with root permissions using your favorite text editor. Nano is pretty easy to use: sudo nano /etc/fstab. The fstab file contains information about all the drives that get mounted to your computer and tells the OS how and where to mount them. You should see a couple lines in there which correlate to your main drive as well as your swap space. You want to add a new line sort of like this one, but with whatever the values you came up with are:



# partition mount location filesystem options dump pass
/dev/sdb1 /media/fileshare ext4 defaults, 0 2


Where the defaults refers to all of the default options found here. I'm no expert on fstab options, but someone else might be able to help you more here.



Now, save and quit whatever text editor you used, and run the command sudo mount -a; this re-mounts all partitions found in fstab. Assuming you did everything right, your partition should be mounted, and you should be able to access your files from whatever mount point you specified in the fstab file.






share|improve this answer



























  • Hey here's a screen shot of my terminal [i.imgur.com/YTboM8t.png]. I think "sdb" is the 500 gb hardrive with "core" (idk what that is). Oh on "loop1" I have the Atom that I can't run when I click the icon but runs when I 'sudo atom' in the terminal.

    – NotThatGood
    Oct 12 '17 at 4:36











  • Looks like sdb1 is the partition you want to mount. For sudo parted, you want to use -l (lowercase L), not -1 (the numeral one).

    – carusot42
    Oct 12 '17 at 15:38











  • @NotThatGood, did you get this working?

    – carusot42
    Oct 13 '17 at 17:31













3















3











3









You might need to edit your /etc/fstab to mount your extra drive. Here's how you can check.



Type lsblk into a terminal like Organic Marble suggested. Devices named like sda, sdb, and sdc are going to be distinct drives, while sda1, sda2, etc are partitions of that drive.



If your drive isn't showing up in lsblk, then someone more experienced than I will need to answer your question. I'd guess it means that your drive isn't connected properly, but I don't know for sure.



However, if you do see a drive that's showing up in lsblk, but doesn't have a MOUNTPOINT, then we can likely assume that it's your drive, and we can follow a few simple steps to get it set up. Let's assume that your device is sdb.



First, figure out which partition of your 500gb drive you want to mount. If you have multiple partitions, then you'll need to do this for each partition. Let's assume you want sdb1.



Next, you need to figure out where you want to mount the partition to. I usually end up mounting all of my drives in the /media directory, with a subdirectory for the partition. for example, my local network share is mounted in /media/fileshare. Either way, decide where you want to mount this partition, and create a folder for it, like this: sudo mkdir -p /path/to/mount/directory.



Next you need to figure out the filesystem type. Type sudo parted -l to get a list of all drives connected to the computer. Find the drive in the list that matches your drive. The partitions will be listed starting at 1; note the column for 'file system'. Let's assume yours is ext4.



Now, open your /etc/fstab file with root permissions using your favorite text editor. Nano is pretty easy to use: sudo nano /etc/fstab. The fstab file contains information about all the drives that get mounted to your computer and tells the OS how and where to mount them. You should see a couple lines in there which correlate to your main drive as well as your swap space. You want to add a new line sort of like this one, but with whatever the values you came up with are:



# partition mount location filesystem options dump pass
/dev/sdb1 /media/fileshare ext4 defaults, 0 2


Where the defaults refers to all of the default options found here. I'm no expert on fstab options, but someone else might be able to help you more here.



Now, save and quit whatever text editor you used, and run the command sudo mount -a; this re-mounts all partitions found in fstab. Assuming you did everything right, your partition should be mounted, and you should be able to access your files from whatever mount point you specified in the fstab file.






share|improve this answer
















You might need to edit your /etc/fstab to mount your extra drive. Here's how you can check.



Type lsblk into a terminal like Organic Marble suggested. Devices named like sda, sdb, and sdc are going to be distinct drives, while sda1, sda2, etc are partitions of that drive.



If your drive isn't showing up in lsblk, then someone more experienced than I will need to answer your question. I'd guess it means that your drive isn't connected properly, but I don't know for sure.



However, if you do see a drive that's showing up in lsblk, but doesn't have a MOUNTPOINT, then we can likely assume that it's your drive, and we can follow a few simple steps to get it set up. Let's assume that your device is sdb.



First, figure out which partition of your 500gb drive you want to mount. If you have multiple partitions, then you'll need to do this for each partition. Let's assume you want sdb1.



Next, you need to figure out where you want to mount the partition to. I usually end up mounting all of my drives in the /media directory, with a subdirectory for the partition. for example, my local network share is mounted in /media/fileshare. Either way, decide where you want to mount this partition, and create a folder for it, like this: sudo mkdir -p /path/to/mount/directory.



Next you need to figure out the filesystem type. Type sudo parted -l to get a list of all drives connected to the computer. Find the drive in the list that matches your drive. The partitions will be listed starting at 1; note the column for 'file system'. Let's assume yours is ext4.



Now, open your /etc/fstab file with root permissions using your favorite text editor. Nano is pretty easy to use: sudo nano /etc/fstab. The fstab file contains information about all the drives that get mounted to your computer and tells the OS how and where to mount them. You should see a couple lines in there which correlate to your main drive as well as your swap space. You want to add a new line sort of like this one, but with whatever the values you came up with are:



# partition mount location filesystem options dump pass
/dev/sdb1 /media/fileshare ext4 defaults, 0 2


Where the defaults refers to all of the default options found here. I'm no expert on fstab options, but someone else might be able to help you more here.



Now, save and quit whatever text editor you used, and run the command sudo mount -a; this re-mounts all partitions found in fstab. Assuming you did everything right, your partition should be mounted, and you should be able to access your files from whatever mount point you specified in the fstab file.







share|improve this answer















share|improve this answer




share|improve this answer








edited Oct 12 '17 at 4:08

























answered Oct 12 '17 at 4:00









carusot42carusot42

1314 bronze badges




1314 bronze badges















  • Hey here's a screen shot of my terminal [i.imgur.com/YTboM8t.png]. I think "sdb" is the 500 gb hardrive with "core" (idk what that is). Oh on "loop1" I have the Atom that I can't run when I click the icon but runs when I 'sudo atom' in the terminal.

    – NotThatGood
    Oct 12 '17 at 4:36











  • Looks like sdb1 is the partition you want to mount. For sudo parted, you want to use -l (lowercase L), not -1 (the numeral one).

    – carusot42
    Oct 12 '17 at 15:38











  • @NotThatGood, did you get this working?

    – carusot42
    Oct 13 '17 at 17:31

















  • Hey here's a screen shot of my terminal [i.imgur.com/YTboM8t.png]. I think "sdb" is the 500 gb hardrive with "core" (idk what that is). Oh on "loop1" I have the Atom that I can't run when I click the icon but runs when I 'sudo atom' in the terminal.

    – NotThatGood
    Oct 12 '17 at 4:36











  • Looks like sdb1 is the partition you want to mount. For sudo parted, you want to use -l (lowercase L), not -1 (the numeral one).

    – carusot42
    Oct 12 '17 at 15:38











  • @NotThatGood, did you get this working?

    – carusot42
    Oct 13 '17 at 17:31
















Hey here's a screen shot of my terminal [i.imgur.com/YTboM8t.png]. I think "sdb" is the 500 gb hardrive with "core" (idk what that is). Oh on "loop1" I have the Atom that I can't run when I click the icon but runs when I 'sudo atom' in the terminal.

– NotThatGood
Oct 12 '17 at 4:36





Hey here's a screen shot of my terminal [i.imgur.com/YTboM8t.png]. I think "sdb" is the 500 gb hardrive with "core" (idk what that is). Oh on "loop1" I have the Atom that I can't run when I click the icon but runs when I 'sudo atom' in the terminal.

– NotThatGood
Oct 12 '17 at 4:36













Looks like sdb1 is the partition you want to mount. For sudo parted, you want to use -l (lowercase L), not -1 (the numeral one).

– carusot42
Oct 12 '17 at 15:38





Looks like sdb1 is the partition you want to mount. For sudo parted, you want to use -l (lowercase L), not -1 (the numeral one).

– carusot42
Oct 12 '17 at 15:38













@NotThatGood, did you get this working?

– carusot42
Oct 13 '17 at 17:31





@NotThatGood, did you get this working?

– carusot42
Oct 13 '17 at 17:31


















draft saved

draft discarded















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f964087%2fi-cant-find-my-other-hdd%23new-answer', 'question_page');

);

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









Popular posts from this blog

Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü