101955 Bennu is a carbonaceous asteroid in the Apollo group discovered by the LINEAR Project on 11 September 1999. It is a potentially hazardous object that is listed on the Sentry Risk Table and tied for the highest cumulative rating on the Palermo Technical Impact Hazard Scale. It has a cumulative 1-in-1,800 chance of impacting Earth between 2178 and 2290 with the greatest risk being on 24 September 2182. It is named after the Bennu, the ancient Egyptian mythological bird associated with the Sun, creation, and rebirth.
101955 Bennu has a mean diameter of 490 m (1,610 ft; 0.30 mi) and has been observed extensively with the Arecibo Observatory planetary radar and the Goldstone Deep Space Network. Bennu was the target of the OSIRIS-REx mission which is intended to return its samples to Earth in 2023 for further study. On 3 December 2018, the OSIRIS-REx spacecraft arrived at Bennu after a two-year journey. It orbited the asteroid and mapped out Bennu's surface in detail, seeking potential sample collection sites. Analysis of the orbits allowed calculation of Bennu's mass and its distribution.
On 18 June 2019, NASA announced that the OSIRIS-REx spacecraft had closed in and captured an image from a distance of 600 metres (2,000 ft) from Bennu's surface. In October 2020, OSIRIS-REx successfully touched down on the surface of Bennu, collected a sample using an extendable arm, secured the sample and prepared for a return trip to Earth. On 10 May 2021, OSIRIS-REx successfully completed its departure from the Bennu asteroid while still carrying the sample of the asteroid rubble.
Astrometric observations between 1999 and 2013 have demonstrated that 101955 Bennu is influenced by the Yarkovsky effect, causing the semimajor axis of its orbit to drift on average by 284±1.5 meters/year. Analysis of the gravitational and thermal effects has given a bulk density of ρ = 1190±13 kg/m3, which is only slightly denser than water. Therefore, the predicted macroporosity is 40±10%, suggesting the interior has a rubble pile structure or even hollows. The estimated mass is (7.329±0.009)×1010 kg.
If you ever want to make your own megathread, you can go here to reserve a spot! :xinternet:
Resources for Organizing your workplace/community :sabo:
Resources for Palestine :palestine-heart:
Buy coffee and learn more about the Zapatistas in Chiapas here :EZLN:
Here are some resourses on Prison Abolition :brick-police:
Foundations of Leninism :USSR:
:lenin-shining: :unity: :kropotkin-shining:
Anarchism and Other Essays :ancom:
Remember, sort by new you :LIB:
Follow the Hexbear twitter account :comrade-birdie:
THEORY; it’s good for what ails you (all kinds of tendencies inside!) :RIchard-D-Wolff:
Come listen to music with your fellow Hexbears in Cy.tube :og-hex-bear:
Queer stuff? Come talk in the queer megathread! ! :sicko-queer:
Monthly Neurodiverse Megathread and Monthly ND Venting Thread :Care-Comrade:
can anyone help me or point me in the right direction?
my SSD where Windows was installed is corrupted and pretty much useless (tho i can access its files) so i got Ubuntu installed in a USB stick to backup whatever i had on my hard drive so i can format it and do a fresh install of Windows on it, but i'm not being able to mount the hard drive and access its files, idk why.
any help would be appreciated :Care-Comrade:
Assuming the drive is not busted and what happened is the windows installation somehow got corrupted or something and you can in fact access the files on the drive.
You might not be able to access it because of secure boot. You can turn it off on the bios (don't remember the exact option). However there's also an option to turn secure boot off on windows and I think both need to be turned off to access files on that drive from another OS. Not sure though.
the weird thing is that in Ubuntu i can mount the SSD which is the one with the problem and the Windows installation. the hard drive should be fine in theory but i'm not being able to mount it. i can actually go into Windows every few boot attempts but it generally crashes in 10 minutes or so, so i wouldn't be able to backup my files.
would secure boot be interfering with my hard drive even if it isn't the one with the windows installation?
greatly appreciate the reply!
I haven't had secure boot enabled in a long time but if I recall correctly you can still mount the partition windows has locked, you just can't access any files.
And secure boot might affect other partitions other than the specific partition/drive where windows is actually installed, such as data partitions.
Not sure if this is your problem, but the ntfs-3g driver will refuse to mount an NTFS filesystem in read/write mode if a hibernation file is present. Depending on how you try mounting the filesystem, (terminal vs. various gui file managers) the mounting operation may fail without conveying this error message or prompting whether you want to mount it read-only instead. There is a cli option to force mounting in read/write mode (deleting the hibernation file), as well as mounting read-only.
By default, Windows creates a hibernation file even when you tell it to shut down normally. This allegedly makes it boot faster. There are one or two settings you need to change to make it stop doing this. (I remain convinced it is conspiracy to make dual booting more inconvenient :illuminati: ).
is there any disadvantage to deleting the hibernation file? would i have to boot into windows to do that or would i be able to do that in Ubuntu? could you at least walk me through on mounting it as read-only? i'm not sure there's anything i really need to back up from that drive but i'd rather be safe than sorry.
If you actually hibernated the machine, you would lose whatever work you hadn't saved in any software which was running. Otherwise, no. It might just take an extra few seconds to boot. The real danger comes from modifying the filesystem without deleting the hibernation file, which is why the driver forbids it.
If the problem is the presence of a hibernation file, it will tell you in the error message. First, I would try mounting the filesystem on the Ubuntu Live USB from a terminal so you can see any error messages it produces. Try:
sudo mkdir /mnt/windows
sudo mount /dev/<windows partition device> /mnt/windows
If it warns you about a hibernation file, that's likely the problem. If it says nothing about it, there is probably something else wrong (it may give you more information than the GUI though)
The hibernation file can be deleted from Windows or Ubuntu. On Windows, you would want to disable hibernation. This will delete the hibernation file and prevent the OS from creating a new one until you enable it again. This can be switched off and on in the command line by running:
powercfg /h off
to turn it off, and
powercfg /h on
to turn it back on. On Ubuntu, you can try telling the driver to remove the hibernation file by running
sudo mount -t ntfs-3g -o remove_hiberfile /dev/<windows partition device> /mnt/windows
to attempt deleting the hibernation file and mounting read/write, or
sudo mount -r /dev/<windows partition device> /mnt/windows
to attempt mounting it read-only.
Worst case scenario, you can use a tool like
dd
to create a backup image of the hard drive so you can attempt to crack it open at your leisure or run various file recovery tools on it. Be careful withdd
though because it will happily overwrite any hard drive you tell it to if you're not careful.yo, i really appreciate the help
i failed on the first command lol it hits me with:
mkdir: cannot create directory ‘/mt/windows’: No such file or directory
that's /mnt/windows, not /mt/windows. :)
holy shit my bad, im kinda sleepy
on the 2nd command you mentioned it gives me this:
mount: /mnt/windows: wrong fs type, bad option, bad superblock on /dev/sda, missing codepage or helper program, or other error.
i tried mounting both the entire drive and just mounting the partition i want
Mounting the entire hard drive won't work, you need to tell it a partition, so it would be /dev/sda# rather than /dev/sda. I guess we need to explicitly tell it what filesystem type we're using too. Try
sudo mount -t ntfs-3g /dev/sda<number> /mnt/windows
There is a small chance the Ubuntu live USB doesn't even ship the ntfs driver, but I'd be kinda shocked if that were the case. On my machine I don't need to explicitly tell it to use ntfs-3g, but I have found myself in situations in the past (can't remember what the hell I was doing) where I did need to tell it.
ok, it gave me this
NTFS signature is missing.
Failed to mount '/dev/sda2': Invalid argument
The device '/dev/sda2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
this is how the disk and the partition show in the Ubuntu 'Disks' program., not sure if that helps or not. i don't know much but it does look odd.