Sponsored Content
Top Forums UNIX for Dummies Questions & Answers installing unix/linux on HP(INTEL INSIDE) LAPTOP. Post 302490010 by princektwo on Sunday 23rd of January 2011 09:05:52 AM
Old 01-23-2011
installing unix/linux on HP(INTEL INSIDE) LAPTOP.

Please inform me on how to install unix/Linus on hp(Intel inside) lap top computer, with windows xp inside.
Thank you.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Linux graphics on a laptop

I'm trying to setup Redhat 7.0 on a Dell Latitude C600/C610. Only thing I can't get to work is the damn graphics resolution. It's all configured correct apart from that. What it is when I type 'startx' the resolution is huge. Shows about a quater of the screen resolution because of this. ... (1 Reply)
Discussion started by: merlin
1 Replies

2. News, Links, Events and Announcements

A $199 PC with No Windows, No Intel Inside

A lot of comuting power for $199: http://story.news.yahoo.com/news?tmpl=story2&cid=569&e=4&u=/nm/20021208/tc_nm/column_pluggedin_dc (8 Replies)
Discussion started by: Neo
8 Replies

3. SuSE

Having a prob. installing SUSE Linux on a laptop

Hi Everyone Im just wondering if anyone knows why when you install SUSE Linux 8.0 on a NEC Versa Laptop that KDE does not fill the entire window. There is a peripheral setup that I played with both the display settings and changing the display adapter, but nothing seems to fix the problem.... (4 Replies)
Discussion started by: spiral
4 Replies

4. Linux Benchmarks

Intel P4 2.4GHz 533FSB Laptop

I stumbled accross this forum and was pleased by the very fair benchmark suite. I ran on my cheap desktop replacement laptop.. luckily I wasn't too penalized by disk tests for having a 5400RPM HDD. Not too shabby for a laptop. CPU/Speed: Pentium 4b 2.4GHz w/ 512kb L2 - 4771 bogomips Ram: 386MB... (0 Replies)
Discussion started by: jnorige
0 Replies

5. News, Links, Events and Announcements

HP has new Linux Laptop

Newfactor Cnet story HP Web Site It's cool that they offer it. But it comes with XP Pro. Change that to XP Home and you save $50. Change that to Linux and it costs the same as XP Home. They are not passing the savings to the consumer. (1 Reply)
Discussion started by: Perderabo
1 Replies

6. Slackware

installing slackware 10.2 on compaq laptop with Sansung HM121HI hard drive

Hi Guys, I'm trying to install slackware 10.2 on a on compaq laptop with Sansung HM121HI hard drive but I wonder what kernel should I use so it can recognize the had disk. Initially I've tried using sata.i and then try to use the fdisk utility to create the new partiotions but doesn't seem... (0 Replies)
Discussion started by: hariza
0 Replies

7. Debian

Installing Debian onto Dell PE2950/PERC6i/Intel L5410

Hello people! :D I wonder if you can help... I am going to take delivery very soon of a Dell Poweredge 2950 III server of the following spec: 1x Quad Core Intel Xeon L5410, 2.33GHz CPU 4GB Memory, 667MHz (2x2GB Dual Ranked FB DIMMs) PERC 6/i, x6 Backplane, Integrated RAID Controller... (2 Replies)
Discussion started by: fishsponge
2 Replies

8. UNIX for Dummies Questions & Answers

Installing Unix & Linux

Hi, I am a newbie to Unix/Linux and I have always been fascinated by them. I just need information on how I can install a Unix/Linux operating system on an Acer Laptop that previously had a Windows XP OS installed. Any hints or suggestions would be appreciated. (1 Reply)
Discussion started by: Pitsmero
1 Replies

9. Red Hat

After installing redhat, my laptop boot straight to Windows 7

Hi all, Good day. I just installed RHEL6.3 into my laptop to learn RH. There is an existing Windows 7 in there. After installing the RHEL, the laptop will just boot to Windows 7. I tried to use this BCDedit to add Linux entry to the boot menu, BUT each time i pick the redhat selection,... (5 Replies)
Discussion started by: wingcross
5 Replies

10. Cybersecurity

Secure Laptop composition with UNIX/Linux and Windows 7

Hello I have a problem: want to build secure laptop for simple user ( that's me :D ) with the VPN and virtualization. Laptop would be for work at home and travel , so security for wirelles networks and comfort using Mobile 3G internet with dongle (not to have problem with drivers) is also... (1 Reply)
Discussion started by: edgkkk
1 Replies
UNTITLED
LOCAL UNTITLED NAME
glutCreateSubWindow -- Create a subwindow LIBRARY
OpenGLUT - window SYNOPSIS
#include <openglut.h> int glutCreateSubWindow(int parentID, int x, int y, int w, int h); PARAMETERS
parentID Parent window identifier x Horizontal position of subwindow y Vertical position of subwindow w Width of subwindow h Height of subwindow DESCRIPTION
In almost every regard that is important to you, a subwindow is like a top-level window. It has a window id; it has its own set of event callbacks; you can render to it; you are notified of its creation; ... A subwindow lives inside of some other window (possibly a top-level window, possibly another subwindow). Because of this, it generally only interacts with other windows of your own creation, hence it is not subjected to a window manager. This is the primary source for its differ- ences from a top-level window: - There are no borders or decorations. - There is no title bar, hence no title. - Requests tend to be acted on a little more directly, without interference from a window manager. - The subwindow inherits the display mode of its parent. Like a top-level window, you must register a display callback function if you wish to use glutMainloop(). A notable case where this function can fail is for offscreen windows. A coherent concept of a subwindow of an offscreen window would intro- duce more complication than is presently believed to be worthwhile. Attempting such a window presently just fails. Failure is denoted by a 0 window id being returned. Subwindows can be very useful for partitioning a window into GUI elements: They have their own input callbacks, so you don't have to figure out which window an event is for. Graphics are clipped to the boundaries of your subwindows, so you do not need to worry much about where your drawing goes. Because windows and subwindows work almost identically from the perspective of a GLUT program, it is relatively easy to move a cluster of related controls into a separate top-level window---or, conversely, embed what was a top-level window inside of another window. OpenGLUT can also report some basic statistics about your (sub)window, relieving you of the duty of tracking all of that information for yourself. SEE ALSO
glutCreateWindow(3) glutDestroyWindow(3) glutCreateMenuWindow(3) Epoch
All times are GMT -4. The time now is 05:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy