Sponsored Content
Operating Systems Linux Ubuntu Cannot find ubuntu on boot up Post 302546175 by humphreyvn on Wednesday 10th of August 2011 02:43:48 PM
Old 08-10-2011
Cannot find ubuntu on boot up

My brother (naughty) reloaded windows 7 on my computer and now I can not boot into linux. It now goes straight to win 7. What maybe wrong and can it be fixed.
 

10 More Discussions You Might Find Interesting

1. Solaris

cannot find boot device and won't boot off cdrom

I'm running solaris 2.5.1. My main development server is DEAD, i can't even boot off the cdrom, it powers up, acts like it is starting the boot process but then says cannot find boot device. I've done the search here on this site and saw the other posts, but at the ok prompt it won't even let me... (3 Replies)
Discussion started by: kymberm
3 Replies

2. Ubuntu

Urgent Help Needed: Installing Dual Boot Ubuntu

Hi, I have installed Ubuntu 5.04 on my second Hard Drive. My first HD contains windows. When i make my 2nd HD as boot device, i see GRUB Menu (i.e. stage 2). On trying to boot Ubuntu, I get an Error 15: File missing problem. The FS shown was FAT. On trying to boot Windows, I am presented... (5 Replies)
Discussion started by: karthikb23
5 Replies

3. UNIX for Dummies Questions & Answers

bad upgrade to 8.10 and ubuntu doesn't boot afterwards.

at the end of October i upgraded the distro to 8.10 at first it seemed fine until i restarted my machine the boot seqence started i logged in after that nothing? tried booting again and the same thing happened did i do something wrong during the upgrade to 8.10 did everything the computer asked me... (1 Reply)
Discussion started by: ksnovice
1 Replies

4. UNIX for Advanced & Expert Users

Changing Ubuntu 10.4 Boot Loader Option

Hi, I am using Ubuntu 10.4 and I want to change the boot loader option to boot Windows 7 by default. Every time I update Ubuntu some extra lines appears at the boot menu. I want to remove them also. Please help me (1 Reply)
Discussion started by: dearanik
1 Replies

5. UNIX for Dummies Questions & Answers

installing centos dual boot with ubuntu

I have installed ubuntu desktop on my hard drive and I gave it all the hard drive. Now I want to repatriate the hard disk and give half of it to anther ext4. How do I do that? Can I do it fron with in the ubuntu? Second when I install the centos, how can I make to recognize the ubuntu and... (0 Replies)
Discussion started by: programAngel
0 Replies

6. Android

Android x86 version dual boot with ubuntu

Hi, i came across this android x86 OS Link. there is a live cd and HD installation. i try the live cd and HD installation in the virtualbox and its working fine. im interested with this x86 platform. since i had a viewsonic viewpad 7 android 2.2.Does anyone try to dual boot this Android x86 OS... (0 Replies)
Discussion started by: jao_madn
0 Replies

7. Ubuntu

Ubuntu lucid does not boot after update to 2.6.32.33.

Hi all, I am using ubuntu 10.04 x64, kernel 2.6.32.32. Yesterday I installed updates to 2.6.32.33 and rebooted the system today. Since then, the system is not booting up and is throwing the following message: Alert /dev/disk/by-uuid/<disk_id_here> does not exist. Dropping to a shell! ... (0 Replies)
Discussion started by: morningSunshine
0 Replies

8. Ubuntu

Copy existing Ubuntu to boot from USB

Hello all, I am looking for a way to copy the existing Ubuntu server 12.04 to a USB (with all the packages and such) and make it boot from the USB. I have seen other threads about copying the CD image to the USB, which is not exactly I am looking for. Before I start diving into anything I... (4 Replies)
Discussion started by: br1an
4 Replies

9. Ubuntu

Unable to boot Ubuntu server 15.10

Hi; I had Windows Server 2003 and performed a fresh Ubuntu Server 15 installation. After installation, Ubuntu server not booting I guess there is boot problem conflicting with my old Windows Server. This is my pastebin: http://paste.ubuntu.com/13851828/ Any help to start my new... (1 Reply)
Discussion started by: gc_sw
1 Replies

10. Ubuntu

Ubuntu desktop RAID1 boot problem.

Hello, I installed ubuntu desktop just recently in aim to create a RAID1 configuration using software RAID MDADM. I have the following configuration as fdisk -l reports: Disk /dev/sda: 223,6 GiB, 240057409536 bytes, 468862128 sectors Units: sectors of 1 * 512 = 512 bytes Sector size... (5 Replies)
Discussion started by: Reol
5 Replies
glutCopyColormap(3GLUT) 					       GLUT						   glutCopyColormap(3GLUT)

NAME
glutCopyColormap - copies the logical colormap for the layer in use from a specified window to the current window. SYNTAX
void glutCopyColormap(int win); ARGUMENTS
win The identifier of the window to copy the logical colormap from. DESCRIPTION
glutCopyColormap copies (lazily if possible to promote sharing) the logical colormap from a specified window to the current window's layer in use. The copy will be from the normal plane to the normal plane; or from the overlay to the overlay (never across different layers). Once a colormap has been copied, avoid setting cells in the colormap with glutSetColor since that will force an actual copy of the colormap if it was previously copied by reference. glutCopyColormap should only be called when both the current window and the win window are color index windows. EXAMPLE
Here is an example of how to create two color index GLUT windows with their colormaps loaded identically and so that the windows are likely to share the same colormap: int win1, win2; glutInitDisplayMode(GLUT_INDEX); win1 = glutCreateWindow("first color index win"); glutSetColor(0, 0.0, 0.0, 0.0); /* black */ glutSetColor(1, 0.5, 0.5, 0.5); /* gray */ glutSetColor(2, 1.0, 1.0, 1.0); /* black */ glutSetColor(3, 1.0, 0.0, 0.0); /* red */ win2 = glutCreateWindow("second color index win"); glutCopyColormap(win1); SEE ALSO
glutSetColor, glutGetColor, glutCreateWindow AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutCopyColormap(3GLUT)
All times are GMT -4. The time now is 11:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy