Sponsored Content
Top Forums UNIX for Dummies Questions & Answers install linux from cd, for dual boot w/98 Post 24917 by amicrawler on Saturday 20th of July 2002 06:57:55 PM
Old 07-20-2002
boot

yes you can i use mandrake 8.2 works great in linux and 98

you just tell it that you want to use exeistion partion and map it out auto matickly works great but the windows side is still win98 still crashes and blue screen of death if you have a 586 or better with 64MB of ram and a good video card linux does not like winmodems at all
amicrawler
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Again Linux and Win2k dual boot

Hello, sorry to bug again....a friend of mine who works for a software company asked the network guy there .....I want to install Linux 7.2 on my windows 2000 box....Mr. Network said that I should have installed linux first then 2k.....does it really make a difference which operating system is... (1 Reply)
Discussion started by: jonas27
1 Replies

2. UNIX for Dummies Questions & Answers

DUAL BOOT redhat linux 7.3 - W2K

Hi, i know a little bit of Unix, but not a whole lot. I have a PC with W2K running on it. I want to install redhat Linux 7.3 as new OS in dual boot. do I need to install a boot manager like system commander or does the linux install detects other OS'es and create a dual boot 4 me (like... (4 Replies)
Discussion started by: maxthree
4 Replies

3. UNIX for Dummies Questions & Answers

XP/Linux dual boot

Does anyone have any idea how I can manage an XP/Linux dual boot (I want to use debian), I can't find anything about it on the internet! (2 Replies)
Discussion started by: XDC_Wolf
2 Replies

4. UNIX for Advanced & Expert Users

windows -linux dual boot............

I am trying to implement a dual boot on my laptop ... using a small xp partition and fedora core 269.1-fc2 i686 linux kernel.. so far I have had to log off and reboot to enter the other partition... but this is getting frustrating.. windows is on /dev/hda1 and 1-5 is on the linux partition. I have... (8 Replies)
Discussion started by: moxxx68
8 Replies

5. UNIX for Dummies Questions & Answers

How to install Free BSD with dual boot with XP?

:confused: hello I have XP installed computer. I am completely newbie in Unix. Despite yesterday I tried to install Free BSD 5. But I coluldn't do. So now computer is not bootable i have done wrong thing. Can you help me installing it without making Xp out of computer? please reply (2 Replies)
Discussion started by: sualcavab
2 Replies

6. Solaris

Solaris/Linux Dual Boot

From googling around, I have found that dual booting isn't so hard... if you are installing both for the first time. However, I couldn't find anything on if I can preserve my Solaris 10 partition that is already installed. Any words of advice? (1 Reply)
Discussion started by: GeekMasterFlash
1 Replies

7. Windows & DOS: Issues & Discussions

Need to install red hat linux on existing windows vista OS as dual boot

HI ALL, I need to install linux on already existing windows vista OS. I tried to install linux,am getting error while creating patitions, i)selected manula patition with grude option.. after that when i m selecting free space to create mount points, its giving error "could not allocate... (2 Replies)
Discussion started by: jack00423
2 Replies

8. Linux

Dual Boot Linux Recommendation

Hi there, Let me make things simple........I want to dual boot Vista 32 bit with some version of Linux / Unix OS. Please recommend........Open SuSE 11, Fedora 9, Ubuntu etc etc 32 bit or 64 bit?? My desktop is Sony Vaio VGC-LS1. Lap top Dell XPS 1710. Hoping to hear your... (2 Replies)
Discussion started by: billcrosby
2 Replies

9. UNIX for Dummies Questions & Answers

How to run linux in windows 7 without dual boot?

tell me in steps if its virtual box (2 Replies)
Discussion started by: mahor1989
2 Replies
ex12bit(3alleg4)						  Allegro manual						  ex12bit(3alleg4)

NAME
ex12bit - How to fake a 12-bit truecolor mode on an 8-bit card. Allegro game programming library. SYNOPSIS
#include <allegro.h> Example ex12bit DESCRIPTION
This program sets up a 12-bit mode on any 8-bit card, by setting up a 256-colour palette that will fool the eye into grouping two 8-bit pixels into one 12-bit pixel. In order to do this, you make your 256-colour palette with all the combinations of blue and green, assuming green ranges from 0-15 and blue from 0-14. This takes up 16x15=240 colours. This leaves 16 colours to use as red (red ranges from 0-15). Then you put your green/blue in one pixel, and your red in the pixel next to it. The eye gets fooled into thinking it's all one pixel. The example starts setting a normal 256 color mode, and construct a special palette for it. But then comes the trick: you need to write to a set of two adjacent pixels to form a single 12 bit dot. Two eight bit pixels is the same as one 16 bit pixel, so after setting the video mode you need to hack the screen bitmap about, halving the width and changing it to use the 16 bit drawing code. Then, once you have packed a color into the correct format (using the makecol12() function below), any of the normal Allegro drawing functions can be used with this 12 bit display! Things to note: The horizontal width is halved, so you get resolutions like 320x480, 400x600, and 512x768. Because each dot is spread over two actual pixels, the display will be darker than in a normal video mode. Any bitmap data will obviously need converting to the correct 12 bit format: regular 15 or 16 bit images won't display correctly... Although this works like a truecolor mode, it is actually using a 256 color palette, so palette fades are still possible! This code only works in linear screen modes (don't try Mode-X). SEE ALSO
BITMAP(3alleg4), END_OF_MAIN(3alleg4), MATRIX(3alleg4), PALETTE(3alleg4), RGB(3alleg4), allegro_error(3alleg4), allegro_init(3alleg4), allegro_message(3alleg4), apply_matrix(3alleg4), blit(3alleg4), circle(3alleg4), clear_bitmap(3alleg4), clear_keybuf(3alleg4), clear_to_color(3alleg4), create_bitmap(3alleg4), create_bitmap_ex(3alleg4), destroy_bitmap(3alleg4), ellipsefill(3alleg4), fade_out(3alleg4), fixcos(3alleg4), fixed(3alleg4), fixsin(3alleg4), fixtoi(3alleg4), font(3alleg4), get_rotation_matrix(3alleg4), get- pixel(3alleg4), install_keyboard(3alleg4), itofix(3alleg4), keypressed(3alleg4), line(3alleg4), makecol(3alleg4), masked_blit(3alleg4), putpixel(3alleg4), screen(3alleg4), set_clip_rect(3alleg4), set_color(3alleg4), set_gfx_mode(3alleg4), set_palette(3alleg4), text_height(3alleg4), text_length(3alleg4), textout_ex(3alleg4), textprintf_ex(3alleg4) Allegro version 4.4.2 ex12bit(3alleg4)
All times are GMT -4. The time now is 11:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy