Sponsored Content
Full Discussion: Installing Linux Red Hat 6.0
Top Forums UNIX for Dummies Questions & Answers Installing Linux Red Hat 6.0 Post 343 by Chaos on Monday 27th of November 2000 11:42:49 AM
Old 11-27-2000
Question

Hi everyone,
I'm planning on installing Linux Redhat on my system, what are the steps i need to take in order to install it side by side with Win'98 or Win'Me OS.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Red Hat Linux 6.0

Ok here is my problem i do not know the command to load a driver for my network card in Ted hat linux 6.0 could sombody give me a hand. and if there is anyone that has a list of commands for red hat that would be great also (2 Replies)
Discussion started by: bbutler3295
2 Replies

2. UNIX for Dummies Questions & Answers

XP to Linux (Red Hat)

I have a PC running XP, and I have a PC that dual boots W2K and Red Hat Linux 7.3. I have the two connected via crossover cable, and the two can access each other when both are running windows. If I were to boot up Linux, can my XP PC telnet to the Linux PC? Any pointers or websites to... (3 Replies)
Discussion started by: lawadm1
3 Replies

3. Linux

Red Hat Linux 9

Hello there! Will anybody please tell me some good links to online eBooks on Red Hat Linux 9 user experiences and the like. If the books are in PDF Format, it will be nice to read. Thanks for cooperation in advance. Enjoy using open source and breathe freely! JAM (5 Replies)
Discussion started by: Jawwad
5 Replies

4. UNIX for Dummies Questions & Answers

Installing ethereal on red hat

Has anybody installed ethereal on red hat linux. If so how ?, ie a a step by step process. I 've been to ethereal.com but it says not to use the RPM's on the site. When I do attempt to install using binaries or RPM's the list of dependancies seems endless, ie it says I need x I try to install x and... (4 Replies)
Discussion started by: alien12
4 Replies

5. Gentoo

Installing Red Hat Linux

I intend to dual boot linux & Windows XP . I've already installed windows. Its impossible to install Red Hat Linux in graphical mode the screen just goes blank shortly after booting with the linux cd I succesfully installed in text mode. After booting the system I select Linux but the screen... (3 Replies)
Discussion started by: Msororaji
3 Replies

6. Linux

Installing Red Hat 5

Hello, I have a problem to installing Red Hat enterprise edition on intel core 2 duo cpu e8200 2.66ghz. Problem is that when i enter or type linux text on boot prompt it hang on some PCI installation. Please give me sum example that how I install RED HAT 5 on Core 2 Duo. In both GUI and Text Base.... (0 Replies)
Discussion started by: Hassan_1992
0 Replies

7. Infrastructure Monitoring

Problem Installing Cacti on Red Hat

Can someone please point me in the direction of where I can find out how to install cacti? there doesn't seem to be straightforward steps for it. after downloading the tar.gz file from cacti.net, there's basically no instructions of what to do from that point on. any help will be appreciated. ... (1 Reply)
Discussion started by: SkySmart
1 Replies

8. UNIX for Dummies Questions & Answers

how to know if i use "Red Hat Enterprise Linux" or "Red Hat Desktop" ?

how to know if i use "Red Hat Enterprise Linux" or "Red Hat Desktop" ? (2 Replies)
Discussion started by: ahmedamer12
2 Replies

9. Solaris

Installing Solaris 11.1 on Red Hat system?

I'm wanting to install Solaris 11.1 on a system that already has Windows and Red Hat and a boot system managed by GRUB. From what I've read, the Solaris 11.1 install will recognize Windows fine and account for it with GRUB 2. But it doesn't mention any other OS. It talks about installing... (2 Replies)
Discussion started by: JWH
2 Replies

10. Fedora

Which is the better platform to learn UNIX/Linux (Kali Linux Vs. Red Hat or other)?

I just started a new semester and I started my UNIX class yesterday. I've already decided to use python along with my learning process but what I really want to use with it is Kali as my UNIX/Linux platform to learn off of since I already wanted to learn Cyber Sec. anyways. I just wanted to know if... (12 Replies)
Discussion started by: ApacheOmega
12 Replies
BUILDRDSWINDOW(3)					      RDS PHYSICAL FUNCTIONS						 BUILDRDSWINDOW(3)

NAME
buildrdswindow - builds windowing of a figure ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "rwinnn.h" rdswindow *buildrdswindow( Figure ) rdsfig_list *Figure; PARAMETER
Figure The figure where has to be built the windowing. DESCRIPTION
The buildrdswindow function permits to build windowing on the figure named 'Figure'. RETURN VALUE
The pointer to the windowing structure "rdswindow". ERRORS
"Rds202: rdsalloc error, can't continue !" it's impossible to allocate the memory size desired EXAMPLE
#include "mphnnn.h" #include "mutnnn.h" #include "rdsnnn.h" #include "rfmnnn.h" #include "rwinnn.h" #include "rtlnnn.h" main() { phfig_list *MbkFigure; rdsfig_list *RdsFigure; rdswindow *Window; long X,Y,Offset; rdswin_list *Win; rdswinrec_list *WinRec; rdsrec_list *ScanRec; char Layer; char Index; mbkenv(); rdsenv(); loadrdsparam(); MbkFigure = getphfig("na2_y",'A'); RdsFigure = figmbkrds(MbkFigure,0,0); Window = buildrdswindow ( RdsFigure ); /* gets each window of the table */ for ( X = 0 ; X < Window->DX ; X ++ ) for ( Y = 0 ; Y < Window->DY ; Y ++ ) { printf("WINDOW (%ld,%ld) ",X,Y); Offset = Y * Window->DX + X; Win = Window->WINTAB + Offset; /* gets all rectangles of a window */ for ( Layer = 0 ; Layer < RWI_MAX_LAYER ; Layer ++ ) { printf("LAYER = %s ",RDS_LAYER_NAME[Layer]); for ( WinRec = Win->LAYERTAB[ Layer ]; WinRec != (rdswinrec_list *)NULL; WinRec = WinRec->NEXT ) { for ( Index = 0; Index < RWI_MAX_REC; Index++ ) { ScanRec = WinRec->RECTAB[ Index ]; /* prints dimensions of each rectangle */ if ( ScanRec != NULL ) printf("X=%ld, Y=%ld, DX=%ld, DY=%ld ", ScanRec->X,ScanRec->Y,ScanRec->DX, ScanRec->DY); else break; } } } } . . . } SEE ALSO
librwi, allocrdswindow, destroyrdswindow, viewrdswindow BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 BUILDRDSWINDOW(3)
All times are GMT -4. The time now is 06:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy