Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
12-19-2016, 02:24 AM
|
#16
|
LQ Guru
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,906
|
If you booted your usb from the first item on the menu you showed us, then I think that would be a UEFI native boot. Because the second (Compatibility) item looks to me like a boot in BIOS emulation mode, often called "compatibility support mode". In which case, if the installer is properly designed, it should have put GRUB into the EFI system partition where your UEFI chip would look for it, and not into the MBR. Fortunately that is a very easy thing to check. Boot up with your usb and type
Code:
sudo /sbin/fdisk -l /dev/sda
In the resultant list of partitions, you should see one (nearly always the first one /dev/sda1) labelled as an EFI system partition. You can mount it for inspection using
Code:
sudo mount -t vfat /dev/sda1 /mnt
Then look in the /mnt directory. You should see a Windows directory and one for Linux. Let us know their contents.
|
|
|
12-19-2016, 09:59 AM
|
#17
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
Is there a way to disable UEFI in the Bios? If so, would that be easier than downloading a UEFI Linux distribution?
|
|
|
12-19-2016, 10:02 AM
|
#18
|
Senior Member
Registered: Feb 2011
Distribution: Ubuntu, Centos
Posts: 1,240
Rep:
|
There's no such thing as a "UEFI Linux distribution". Basically all Linux distributions nowadays support UEFI/GPT. But yes, it might be easier for you to disable it. Some computers support disabling it, other don't, that is to say, disabling the UEFI booting (if the BIOS itself is UEFI there's nothing you can do about that - that's a sort of oxymoron, BIOSs cannot be UEFI, but that's how people still call them, because it's easier to know what you mean). So you could choose MBR or MBR compatible, but it depends a lot on the computer that you own.
Last edited by vincix; 12-19-2016 at 10:04 AM.
|
|
|
12-19-2016, 10:22 AM
|
#19
|
LQ Guru
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,906
|
Quote:
Originally Posted by GiantMcBig
Is there a way to disable UEFI in the Bios? If so, would that be easier than downloading a UEFI Linux distribution?
|
You've got one already! Mint is fully UEFI-compatible. It's just that you've had a glitch with the installation of grub. This is the trickiest part of any install and the most likely to go wrong, but it's always correctable. While you're fixing it, you can continue to use Mint in its live form and learn more about it, so you're not losing out.
Have you checked yet if the grub bootloader is present on your efi system partition, as I suggested in my earlier post? It'll be in a separate directory and will be called something like grub64.efi.
|
|
|
12-19-2016, 02:07 PM
|
#20
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
I'll try the code
Last edited by GiantMcBig; 12-19-2016 at 02:09 PM.
|
|
|
12-19-2016, 02:27 PM
|
#21
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
Ok, I typed in the first code and got 'Welcome to fdisk (util - Linux 2.27.1).'
'Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.'
The second code I typed in came back with:
Create a new partition 1 of type 'Linux native' and of size 7.7 GiB.
Create a new partition 2 of type 'Linux swap' and size of 46.3 GiB.
Create a new partition 3 of type 'Whole disk' and of size 7.7 GiB.
Create a new Sun disklabel.
|
|
|
12-19-2016, 02:43 PM
|
#22
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
Wait.. I thought the L in your code was a 1.. Face palm
Ok, I retyped the first code and got:
Disk dev/sda: 7.7 GiB, 8273264640 bytes, 16158720 sectors
Units: sectors of 1 * 512=512 bytes /512 bytes sector size (logical/physical) : 512 bytes / 512 bytes
I/O size (minimum /oprimal): 512 bytes /512 bytes
Disklabel type: dos
Disk identifier: 0xc3072e18
Device Boot Start End Sectors Size Id Type
/dev/sea1 * 56 16158664 7.7G c W95 FAT32 (LBA)
|
|
|
12-19-2016, 02:46 PM
|
#23
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
I typed the second code and got:
Mount: /dev/sda1 is already mounted or /mnt busy
/dev/sda1 is already mounted on /cdrom
|
|
|
12-19-2016, 03:21 PM
|
#24
|
LQ Guru
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,906
|
Quote:
Originally Posted by GiantMcBig
Wait.. I thought the L in your code was a 1.. Face palm
Ok, I retyped the first code and got:
Disk dev/sda: 7.7 GiB, 8273264640 bytes, 16158720 sectors
Units: sectors of 1 * 512=512 bytes /512 bytes sector size (logical/physical) : 512 bytes / 512 bytes
I/O size (minimum /oprimal): 512 bytes /512 bytes
Disklabel type: dos
Disk identifier: 0xc3072e18
Device Boot Start End Sectors Size Id Type
/dev/sea1 * 56 16158664 7.7G c W95 FAT32 (LBA)
|
Well, now we know! You have an old computer with Windows 95 occupying the whole of a rather small disk (I'm assuming that last line was mis-typed and actually says "/dev/sda1"). You won't have a UEFI in there, you'll have an old-fashioned BIOS. Mint hasn't installed, and I don't know if it actually could install in 7 GB. Most people reckon you need 10 GB for a modern installation of a mainstream distro.
Next time around, try booting in BIOS compatibility mode (second item on the menu). If there's an option for erasing and replacing Windows, take it. You can't really dual-boot on a disk that size. If the install still doesn't work (and you know how to check that now), you'll have to try a smaller distro (say Puppy or AntiX Core).
btw, don't try to type commands that are in a code box. The whole purpose of "code" is that you can easily copy the commands and paste them into your terminal.
|
|
|
12-19-2016, 03:51 PM
|
#25
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
I'm certain that my hard drive has more space than 7.7 GiB. It's my flash drive that has 7.7GiB
|
|
|
12-19-2016, 03:52 PM
|
#26
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
Now I'm a little confused. I bought this thing brand new and it came with windows 10 preinstalled
|
|
|
12-19-2016, 03:58 PM
|
#27
|
LQ Guru
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342
|
Quote:
Originally Posted by GiantMcBig
Now I'm a little confused. I bought this thing brand new and it came with windows 10 preinstalled
|
what I seen its specs have a 32GB and a 64GB prob ssd of some type for size "hdd"
try a different distro like slackware, dvd iso that is a straight out install, cfdsik /dev/sda you should be looking at total of aprox 32GB to 64GB of space
I take it you're planing on wiping windows all together?
Last edited by BW-userx; 12-19-2016 at 03:59 PM.
|
|
|
12-19-2016, 04:08 PM
|
#28
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
I listed the partitions again and got this:
Disk /dev/loop0: 1.7 GiB, 1757536256 bytes, 3432688 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mmcblk0: 29.1 GiB, 31272730624 bytes, 61079552 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 33324489-7A5D-421B-82A4-E26EE7F909E1
Device Start End Sectors Size Type
/dev/mmcblk0p1 2048 1050623 1048576 512M EFI System
/dev/mmcblk0p2 1050624 57063423 56012800 26.7G Linux filesystem
/dev/mmcblk0p3 57063424 61077503 4014080 1.9G Linux swap
Disk /dev/mmcblk0boot1: 4 MiB, 4194304 bytes, 8192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mmcblk0boot0: 4 MiB, 4194304 bytes, 8192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/sda: 7.7 GiB, 8273264640 bytes, 16158720 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xc3072e18
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 56 16158719 16158664 7.7G c W95 FAT32 (LBA)
|
|
|
12-19-2016, 04:08 PM
|
#29
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
And yes BW, id like to rid my laptop of windows altogether
|
|
|
12-19-2016, 04:11 PM
|
#30
|
LQ Newbie
Registered: Dec 2016
Posts: 22
Original Poster
Rep:
|
mint@mint ~ $ sudo /sbin/fdisk -l /dev/sda
Disk /dev/sda: 7.7 GiB, 8273264640 bytes, 16158720 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xc3072e18
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 56 16158719 16158664 7.7G c W95 FAT32 (LBA)
mint@mint ~ $ sudo mount -t vfat /dev/sda1 /mnt
mount: /dev/sda1 is already mounted or /mnt busy
/dev/sda1 is already mounted on /cdrom
mint@mint ~ $
|
|
|
All times are GMT -5. The time now is 02:31 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|