I have removed the harddisk and plugged into another PC running Windows and tried to get the data through but couldn't. Can anyone guide me on how can I get the data, because I cannot get to my lockscreen in Ubuntu
Version 18.04.
I have removed the harddisk and plugged into another PC running Windows and tried to get the data through but couldn't. Can anyone guide me on how can I get the data, because I cannot get to my lockscreen in Ubuntu
Version 18.04.
mount
the disk and navigate to where the data you want is, andcp
it off. This is the same on any OS in my experience, complicated by the file-systems in use plus any encryption used, none of which you really specified (no release info, and no fs detail at all). How the lockscreen applies I don't know as that bit seems different to the prior sentence (access the data on windows though is off-topic as this isn't a windows support site) https://askubuntu.com/help/on-topic – guiverc Aug 24 '20 at 05:34mount
is a command which mounts a disk/device into a directory so you can read/write/peruse files in your normal directory structure. You can useman mount
to read the reference manual page for themount
command. As you're using windows though, you'll need to use windows commands, plus you need to know the file-system used on your system (Ubuntu can use EXT, XFS, BTRFS, REISERFS, ZFS along with many others selected at install time, and you've provided no details). Themount
(on windows) will likely need this information (and will need drivers support for some before it canmount
) – guiverc Aug 24 '20 at 05:46mount
will be NTFS or FAT32 (which is not a default for a Ubuntu file-system thus you'll need to provide details). I too would use a live file system, such as Ubuntu install media as your hdd/ssd will be a native and thusmount
will be far easier. You only need another drive/device if that's where you're going to copy files to, normally Imount
network storage (NFS) &cp
(copy) my files there so don't bother with other hdd/ssd on box being used. A live system if a Ubuntu release is also on-topic here :) – guiverc Aug 24 '20 at 06:23