Try this,
Boot the "live flash drive", press CTRL+ALT+T to get a terminal.
In that terminal type (press enter on each line):
nautilus &
Press F9 in nautilus so that you see the panel with "Places" on top.
Farther down you see "Devices"
Click on each of these that you need to access, i.e. the source and destination partitions for your file copy.
Each click will mount the partition in question, making it accessible.
Now take good note on which window this nautilus uses; e.g. Move it slightly to the side... you will get A NEW one by the following:
Go back to the terminal and type:
sudo bash
nautilus &
In the NEW "nautilus", you should be able to copy files to the destination you wish.
CTRL-L will allow editing the path to the files you have visible,
which also allows you to COPY the path (CTRL-C)
Now note: The files you copy will likely still 'belong' to the user in the failed installation... so you need to take ownership,
once again back to the terminal: paste the /destination/ path (as copied from above, OR RETYPE it)
cd /destination/
chown root:root *
ls -lR | grep -v root
cd
The ls -lR | grep -v root
should show NO FILES, other data may appear.
cd
moves 'current dir' back to the $HOME of root.
Now go back to the FIRST nautilus and click on ALL _^_
('eject CD' symbol) at the side of the Devices.
This will 'unmount' them and ensure that all data has been written.
As you have reinstalled and need to copy back the files, use sudo chown $USER:$USER *
after a cd
as above, to take ownership of the files as the new user.
CTRL+ALT+F1
, if that works you will get a "Terminal" with login prompt within a few seconds. As you're writing here I assume that you have some other means to read in the linked posting; go back there and check against what you've done. Editing the *.conf file in nano should be one thing to try/check. – Hannu Jun 20 '14 at 14:50Answer
below has an(v)
-symbol just below the ^, 0 and v -- if the answer helps you, click on the symbol to tell that it went well (it will turn green). – Hannu Jun 20 '14 at 17:58