Code:
Partition table entries are not in disk order
tara@tara-VERSAE6210-RNC81031647:~$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 111.8G 0 disk
├─sda1 8:1 0 53.8G 0 part
├─sda2 8:2 0 1K 0 part
├─sda5 8:5 0 26G 0 part
├─sda6 8:6 0 2G 0 part [SWAP]
└─sda7 8:7 0 30G 0 part /
sr0 11:0 1 1024M 0 rom
tara@tara-VERSAE6210-RNC81031647:~$ lsblk
Okay, the "/" listed on line for "sda7" indicates that that is the root partition you are booted into while running the command -- so that is the root partition for your good Linux Lite installation.
If you haven't spent a lot of time customizing that new installation and don't have a lot of data on it that needs to be saved, the easiest thing to do would be to delete all current Linux partitions, then install again. To do that:
- Boot with "live" LL DVD/USB
- Open GParted (Menu -> System -> Partition Drives)
- Right-click the Swap partition, choose "Swapoff"
- Then delete each partition in this order by right-clicking them and choosing "Delete": sda7, sda6, sda5, sda2.
- Go to Edit -> Apply All Operations to finalize the deletions
- You'll now see that the drive only has the Windows partition followed by unformatted free space -- leave it that way.
- Now you can start the installer and tell it to install "Along side Windows". It will automatically use the free space and make one large root partition and a small Swap partition.
- Reboot when done and you'll have choice for Windows and (only one) Linux Lite.
If you have current install customized and don't want redo it all again, you can delete the bad install's partition, then move things around on the drive to end up with one large root for the current install. This procedure might actually take longer to do and will likely result in an unbootable system initially, which will need to be fixed from your "live" DVD/USB. It should be doable, but there is also a possibility that things will not go right and you'll end up with a broken system and need to re-install anyway. (It's not likely, but is a possibility whenever manipulating partitions.) Here's how this procedure would go:
- Boot with "live" LL DVD/USB
- Open GParted
- Right-click Swap partition, choose "Swapoff"
- Right-click sda5, choose "Delete"
- Right-click sda6 (Swap), choose "Resize/Move"
- With your mouse, grab sda6 and move it all the way to the left as far as you can within sda2
- The free space from the deleted sda5 should now be between sda6 and sda7
- Right-click sda7, choose "Resize/Move"
- With mouse, grab left edge of sda7 and drag it to the left to encompass all of that free space (until you hit edge of the moved sda6)
- Now you should see the original Windows partition followed by the extended (sda2) partition with only a Swap partition (sda6) and one Root partition (sda7) inside it.
- Assuming that is what you see, go to Edit -> Apply All Operations to carry out those changes. (This will likely take quite a bit of time to complete. Not sure how much, but my guess would be anywhere from 15 minutes to 1 hour.)
- After this completes there is a good chance that you won't be able to boot into anything -- Windows or Linux Lite. Try rebooting into both anyway just to be sure.
- If reboot did not work (into either OS), describe for us exactly what you saw and what happened?
- Then, boot again with your "live" DVD/USB.
- Enter the following commands in a terminal:
Code:
sudo parted -l
sudo blkid -c /dev/null
The
sudo parted -l command will list your partitions. The last partition listed should show as having "
Ext4" under "
File system" column. Make a note of the partition number for that partition. Using that, you'll now know that the root partition is called
/dev/sdaX (where "X" is the partition number). Mount that partition with the following command (substitute partition number for "X"):
Code:
sudo mount /dev/sdaX /mnt
Now enter this command so we can see what is in your fstab file (which directs booting to proper partitions):
Copy entire output of terminal commands you just ran (all four commands) and paste that back here for us to see.
When done, unmount the partition you mounted before shutting down.
Code:
sudo umount /dev/sdaX
We'll need to see that output before we can give specifics on how to get booting up and running again.