LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-30-2016, 06:20 PM   #46
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176

Quote:
Originally Posted by ardvark71 View Post
Hi Gregg...

As another idea if the USB option doesn't work, I just found this option if the laptop in question has a working LAN (ethernet) port.

Regards...
Thanks ardvark.

I don't know. That looks pretty over my head and a privacy risk.

At least, it seems other people are having the same problem. (Misery loves company?)
 
Old 03-30-2016, 07:38 PM   #47
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
New info. (Am I INCHING closer?) I put Xubuntu 14.04 "live" on a USB flash drive via Unetbootin and put it into the laptop. (I figured the laptop had Xubuntu on it before so maybe it would like it.) So I put it in and hit the power. This time the bar on the splash screen opened really slowly. I thought for sure it was going to work. But I got a new message. (It no longer showed that message about SYSLINUX 6:03 (see screenshot).)

Now it just says:

Code:
Missing operating system.
I was like, Duh.
Attached Thumbnails
Click image for larger version

Name:	Selection_022.jpg
Views:	22
Size:	36.9 KB
ID:	21319  
 
Old 03-30-2016, 07:54 PM   #48
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,779

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
"Missing operating system" means that there is not exactly one partition marked "active" in the partition table. Fix that with fdisk.
 
Old 03-30-2016, 08:23 PM   #49
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by rknichols View Post
"Missing operating system" means that there is not exactly one partition marked "active" in the partition table. Fix that with fdisk.
Rk, This sounds very promising. But I am not a techie and don't know how to fix anything with fdisk. And Googling around about fdisk and how to use it it seemed I had to get into the terminal of the target laptop and as far as I can tell I can't. (We are talking the partition on the target laptop, right?) Anyway, long story short, could you tell me how to do this fixing? Thanks.
 
Old 03-30-2016, 08:40 PM   #50
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,779

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
You don't do that from the broken machine. Do it from a working one. On some working Linux machine, run "sudo fdisk /dev/sdX", replacing "X" with the appropriate drive letter. Here:
Code:
$ sudo fdisk /dev/sdd
Command (m for help): p

Disk /dev/sdd: 3999 MB, 3999268864 bytes
128 heads, 32 sectors/track, 1907 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf7dbdb39

   Device Boot      Start         End      Blocks   Id  System
/dev/sdd1               1        1907     3905520    b  W95 FAT32

Command (m for help): a
Partition number (1-4): 1

Command (m for help): p

Disk /dev/sdd: 3999 MB, 3999268864 bytes
128 heads, 32 sectors/track, 1907 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf7dbdb39

   Device Boot      Start         End      Blocks   Id  System
/dev/sdd1   *           1        1907     3905520    b  W95 FAT32

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.
$
Note the asterisk that was originally missing in the "Boot" column.
 
Old 03-31-2016, 01:31 PM   #51
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by rknichols View Post
You don't do that from the broken machine. Do it from a working one. On some working Linux machine, run "sudo fdisk /dev/sdX", replacing "X" with the appropriate drive letter. Here:
Code:
$ sudo fdisk /dev/sdd
Command (m for help): p

Disk /dev/sdd: 3999 MB, 3999268864 bytes
128 heads, 32 sectors/track, 1907 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf7dbdb39

   Device Boot      Start         End      Blocks   Id  System
/dev/sdd1               1        1907     3905520    b  W95 FAT32

Command (m for help): a
Partition number (1-4): 1

Command (m for help): p

Disk /dev/sdd: 3999 MB, 3999268864 bytes
128 heads, 32 sectors/track, 1907 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf7dbdb39

   Device Boot      Start         End      Blocks   Id  System
/dev/sdd1   *           1        1907     3905520    b  W95 FAT32

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.
$
Note the asterisk that was originally missing in the "Boot" column.
Thanks a lot, rk. I need just a little more fleshing out. So the problem is the USB drive?

And as to your instructions. So I put the USB flash drive I'm going to use for the install into a working Linux computer, right? Then should that USB drive be empty or have the distro I'm going to install on it? Is FAT32 okay for the formatting? Then (see screenshot) am I running:

Code:
sudo fdisk /dev/sdb1
or

Code:
sudo fdisk /dev/sdb
?

Then once I enter the command, I'm adding the red letter or number at the called-for stage, right? And yeah, then the asterisk signifies that the USB drive is bootable.

Sorry for the overkill request for clarification. But I especially wasn't sure about what the appropriate drive letter would be.

And just wondering: was there a reason for needing to do this in terms of something being wrong with the USB drive?

Thanks a lot!
Attached Thumbnails
Click image for larger version

Name:	Selection_023.png
Views:	17
Size:	36.8 KB
ID:	21336  
 
Old 03-31-2016, 02:19 PM   #52
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,779

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
You are adjusting the partition table. Drives (/dev/sdb) have partition tables. Individual partitions (/dev/sdb1) do not.

Yes, I used red color for the part you need to type, but since you are using gparted you can do the same thing there. Just right-click on the partition, select "Manage Flags" from the menu, and add a check mark for "boot".

There is nothing "wrong" with the drive. The partition was just never flagged as bootable, and that is confirmed by the empty "Flags" column in the screenshot you posted.
 
Old 03-31-2016, 02:50 PM   #53
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by rknichols View Post
You are adjusting the partition table. Drives (/dev/sdb) have partition tables. Individual partitions (/dev/sdb1) do not.

Yes, I used red color for the part you need to type, but since you are using gparted you can do the same thing there. Just right-click on the partition, select "Manage Flags" from the menu, and add a check mark for "boot".

There is nothing "wrong" with the drive. The partition was just never flagged as bootable, and that is confirmed by the empty "Flags" column in the screenshot you posted.
Thanks rk. Okay, I did what you said. The "boot" showed up in the flag area. I put the USB flash drive into the laptop. (Making sure USB DEVICE was the first entry on page 2 of the BIOS.) And ran it and it gave me the second to last error message again (see screenshot) Then I powered the laptop on and chose F12. The boot menu came up and I chose the USB Device choice and the same error (as in the screenshot) came up again.\

rk, I THINK the error is due to that I had that Puppy Linux on that USB flash drive. I will put something else on the flash drive, try again and report back.
Attached Thumbnails
Click image for larger version

Name:	Selection_022.jpg
Views:	19
Size:	36.9 KB
ID:	21337  

Last edited by Gregg Bell; 03-31-2016 at 02:58 PM. Reason: adding
 
Old 03-31-2016, 03:34 PM   #54
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,779

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
You are not, by any chance, trying to boot a 64-bit OS on that 32-bit CPU, are you?
 
Old 03-31-2016, 05:38 PM   #55
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by rknichols View Post
You are not, by any chance, trying to boot a 64-bit OS on that 32-bit CPU, are you?
No. Even so, I can't help but feel like I'm doing something wrong. I've installed four or five Linux OSs on Windows computers and never had any trouble.

Now I just tried to install Xubuntu 14.04 (via Unetbootin, making sure it said "boot") on a Linux computer and I got the same message as in the last screen shot. (So the Puppy install wasn't the problem.)
 
Old 03-31-2016, 06:56 PM   #56
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,779

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
I can't imagine what your problem might be. I just used unetbootin (version 613, Linux64) to download Xubuntu 14.04 and put it on a USB flash drive. That drive boots just fine on several different systems.
 
Old 03-31-2016, 07:34 PM   #57
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by rknichols View Post
I can't imagine what your problem might be. I just used unetbootin (version 613, Linux64) to download Xubuntu 14.04 and put it on a USB flash drive. That drive boots just fine on several different systems.
I don't know. I think I'm getting close, though. (Thanks for hanging with me on this. )
 
Old 04-02-2016, 03:20 PM   #58
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Progress! It's still a little mysterious but I'm edging closer, even had some success. A part of the problem is my really old hardware. I saw this link https://askubuntu.com/questions/6967...ive-with-15-10 saying you can't make 15.10 stuff with 15.04 or older distros via usb creator (this was the
Quote:
SYSLINUX 6.03 EDD 20150813 Copyright (C) 1994-2012 H. Peter Anvin et al Boot Error
error I assume I was getting because of that.) (But I wasn't using usb creator to make the bootable usb drives and CDs. I used either Unetbootin, Startup Disk Creator or K3b (for the CDs).

And with a couple of the machines I used to be able to install OSs with a USB flash drive I am no longer able to (this is part of the still-existing mystery), however I was able to boot a distro (in this case Bodhi) to one of those machines with a CD. AND I was able to boot Bodhi to the laptop with a CD.

The limitations are that the CD will only hold the smaller distros, so if I wanted to boot say, Lubuntu (at 783MB) it's too big for the 700 MB CD.

There's this workaround using something called PLoP but I don't know about that.

http://www.howtogeek.com/howto/16822...-wont-let-you/

My next big challenge (besides those above) will be a Dell Optiplex GX520 running Windows 7 totally went down at where I work and I inherited it. It'll be faster than the old clunker I normally use and I would love to install Xubuntu 15.10 on it. So we'll see. The GX520 is 64bit (which is one of the reason I would really LOVE to get it to work with Xubuntu (which is my fav distro).) And so (see screenshot) would this be the file I would be choosing to make the bootable usb drive? Thanks.
Attached Thumbnails
Click image for larger version

Name:	Selection_027.png
Views:	13
Size:	135.9 KB
ID:	21346  
 
Old 04-02-2016, 03:52 PM   #59
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
Gregg,

We have all got our fingers and toes crossed for you this time with the GX 520!

Last edited by beachboy2; 04-02-2016 at 03:56 PM.
 
Old 04-02-2016, 03:55 PM   #60
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,779

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
From the specs I see, the Dell Optiplex GX520 has an Intel Celeron D processor, which is a 32-bit CPU. You'll need a 32-bit OS for that, so choose the xubuntu-15.10-desktop-i386.iso file, not the amd64 version.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Fresh OS install (Kubuntu) - any suggestions on making a VERY secure machine/install? cilbuper Linux - Security 2 12-01-2015 05:08 PM
fresh install of kubuntu , it said to install nvidia driver , now wont boot? JackDinn Linux - Newbie 9 09-16-2015 04:21 AM
[SOLVED] [RHL 6.2] Fresh install. XWindows Server didn't install. Can I install it manually? Patriot2135 Red Hat 9 11-19-2013 12:37 AM
[SOLVED] Fresh install of slackware 14.1 and cannot install mayan boot splash Bertman123 Slackware 6 09-28-2013 06:48 AM
fresh install (fresh headache) powadha Slackware 2 03-06-2004 01:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:47 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration