LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Containers
User Name
Password
Linux - Containers This forum is for the discussion of all topics relating to Linux containers. Docker, LXC, LXD, runC, containerd, CoreOS, Kubernetes, Mesos, rkt, and all other Linux container platforms are welcome.

Notices


Reply
  Search this Thread
Old 10-28-2019, 09:04 AM   #1
aquatic7
LQ Newbie
 
Registered: Feb 2019
Posts: 9

Rep: Reputation: Disabled
My secondary hard drive I have to click for it to "wake up".


I have my main SSD (sda) where my OS is on.
Then I have my secondary mechanical HD (sdb).

The hard drive is not "loaded" automatically. It seems like I have to "wake it up" first.
There are no access to it until I open file manager and click on it.

What might be the problem here and how to fix it so I don't have to wake it up. My files won't be synced with my cloud storage bc of this unless I go to file manager and click it to wake it up.

Also, the path /run/media/ seems a bit weird to me, but I don't know

In advance, thank you for your assistance.

NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 232,9G 0 disk
├─sda1 8:1 0 8,1G 0 part [SWAP]
├─sda2 8:2 0 20,5G 0 part /
└─sda3 8:3 0 204,3G 0 part /home
sdb 8:16 0 931,5G 0 disk
└─sdb1 8:17 0 931,5G 0 part /run/media/anonymous/06bcf743-8b4d-409f-addc-520fc4e19299
sr0 11:0 1 1024M 0 rom
sr1 11:1 1 1024M 0 rom

NAME FSTYPE LABEL UUID FSAVAIL FSUSE% MOUNTPOINT
sda
├─sda1 swap ff83fae0-6c9a-4fe8-aa01-b0ac371382ab [SWAP]
├─sda2 ext4 421d3d6a-1931-4fc4-bd02-75027bfe62a3 1,1G 90% /
└─sda3 ext4 26f3328d-cc0d-43a5-8812-34ebc924c79b 68,1G 61% /home
sdb
└─sdb1 ext4 06bcf743-8b4d-409f-addc-520fc4e19299 333,1G 59% /run/media/anonymous/06bcf743-8b4d-409f-addc-520fc4e19299
sr0
sr1


/dev/sdb:

ATA device, with non-removable media
Model Number: ST1000DM003-1SB10C
Serial Number: Z9A2C9L6
Firmware Revision: CC43
Transport: Serial, SATA Rev 3.0
Standards:
Used: unknown (minor revision code 0x0029)
Supported: 8 7 6 5
Likely used: 8
Configuration:
Logical max current
cylinders 16383 16383
heads 16 16
sectors/track 63 63
--
CHS current addressable sectors: 16514064
LBA user addressable sectors: 268435455
LBA48 user addressable sectors: 1953525168
Logical Sector size: 512 bytes
Physical Sector size: 4096 bytes
Logical Sector-0 offset: 0 bytes
device size with M = 1024*1024: 953869 MBytes
device size with M = 1000*1000: 1000204 MBytes (1000 GB)
cache/buffer size = unknown
Form Factor: 3.5 inch
Nominal Media Rotation Rate: 7200
Capabilities:
LBA, IORDY(can be disabled)
Queue depth: 32
Standby timer values: spec'd by Standard, no device specific minimum
R/W multiple sector transfer: Max = 16 Current = 16
Advanced power management level: 128
Recommended acoustic management value: 208, current value: 208
DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 udma5 *udma6
Cycle time: min=120ns recommended=120ns
PIO: pio0 pio1 pio2 pio3 pio4
Cycle time: no flow control=120ns IORDY flow control=120ns
Commands/features:
Enabled Supported:
* SMART feature set
Security Mode feature set
* Power Management feature set
* Write cache
* Look-ahead
* Host Protected Area feature set
* WRITE_BUFFER command
* READ_BUFFER command
* DOWNLOAD_MICROCODE
* Advanced Power Management feature set
Power-Up In Standby feature set
* SET_FEATURES required to spinup after power up
SET_MAX security extension
* 48-bit Address feature set
* Device Configuration Overlay feature set
* Mandatory FLUSH_CACHE
* FLUSH_CACHE_EXT
* SMART error logging
* SMART self-test
* General Purpose Logging feature set
* WRITE_{DMA|MULTIPLE}_FUA_EXT
* 64-bit World wide name
Write-Read-Verify feature set
* WRITE_UNCORRECTABLE_EXT command
* {READ,WRITE}_DMA_EXT_GPL commands
* Segmented DOWNLOAD_MICROCODE
* Gen1 signaling speed (1.5Gb/s)
* Gen2 signaling speed (3.0Gb/s)
* Gen3 signaling speed (6.0Gb/s)
* Native Command Queueing (NCQ)
* Phy event counters
* READ_LOG_DMA_EXT equivalent to READ_LOG_EXT
* DMA Setup Auto-Activate optimization
* Device-initiated interface power management
* Software settings preservation
unknown 78[7]
* SMART Command Transport (SCT) feature set
* SCT Write Same (AC2)
unknown 206[7]
unknown 206[12] (vendor specific)
Security:
Master password revision code = 65534
supported
not enabled
not locked
frozen
not expired: security count
supported: enhanced erase
106min for SECURITY ERASE UNIT. 106min for ENHANCED SECURITY ERASE UNIT.
Logical Unit WWN Device Identifier: 5000c50091103072
NAA : 5
IEEE OUI : 000c50
Unique ID : 091103072
Checksum: correct
 
Old 11-02-2019, 08:58 AM   #2
wagscat123
Member
 
Registered: Jan 2009
Location: Maryland-Pennsylvania border, USA
Distribution: openSUSE 15.2/15.3, Tumbleweed, Kubuntu 18.04/21.04, macOS 10.15, antiX 19, and Linux Mint 19.3
Posts: 860
Blog Entries: 45

Rep: Reputation: 120Reputation: 120
So what's happening is that when you click on your hard disk, you're *mounting* it. When you mount a partition or drive, it becomes mapped to a directory on your system from which you can access its contents. Your drive appears to be mounted at "/run/media/anonymous/06bcf743-8b4d-409f-addc-520fc4e19299"

If you want it mounted at startup, the best way is to add a line the /etc/fstab configuration file with your favorite text editor and root privileges (i.e. "sudo nano /etc/fstab")

You need to make sure that the permissions are set right for security reasons/so you can access and edit it from your regular user account. Here's a link on getting it so all users on your system can read/write: https://askubuntu.com/questions/5872...-for-all-users
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Have to "wake up" my secondary hard drive. aquatic7 Linux - Newbie 13 10-29-2019 02:03 PM
Have to unmount secondary hard drive to access it. Why? aquatic7 Linux - Newbie 3 02-25-2019 04:53 AM
Computer detecting right-click as left-click, left-click as left-click and middle with 2 fingers pressed as right-click Festerdam Linux - Newbie 5 06-19-2017 05:41 PM
Can I wake up a server in "standby" or "memory" mode using wake-on-lan? songweijia Linux - Server 2 03-03-2010 06:51 PM
display after boot up is messed up and have a Grub error 22 on secondary hard drive GnOOb Linux - Newbie 9 10-26-2009 10:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Containers

All times are GMT -5. The time now is 07:25 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration