IronMagazine Bodybuilding Forum


Go Back   IronMagazine Bodybuilding Forum > General Interests Forums > Open Chat
Photo Gallery Register Members List Blogs Search Today's Posts Mark Forums Read

Open Chat General adult talk about life, relationships or whatever you want to discuss.

Sponsored by: HumaneVoLabs.com


Im having a big problem with my comp.


Reply
 
LinkBack Thread Tools Display Modes
Old 02-23-2005, 02:55 PM   #31
Metrosexual
Elite Member
 
DOMS's Avatar
 
Join Date: Jul 2004
Location: In a van, down by the river...
Posts: 21,728
Photos: 6

Quote:
Originally Posted by BoneCrusher
Ya lost me there bud. Doing a google for pulp fiction relates to this in what way?

I agree that Linux is good stuff. Just not sure it is for someone that is not much into computers.

I'm thinking he needs the short term fix ... replace his OS and go on with life.

JMHO.
Look here.

Sure, he could just reinstall 98 and it would keep all of the programs. He just needs the disk.



I never lie because I don't fear anyone. You only lie when you're afraid.—John Gotti
DOMS is offline   Reply With Quote
Old 02-23-2005, 03:57 PM   #32
Lift or Die
Elite Member
 
BoneCrusher's Avatar
 
Join Date: Jul 2004
Location: Austin Texas
Posts: 8,580

I don't use google as much for the torrents I need. Like you cfs I am a torrent freak ...

Anyway here is an index with a couple of good 98 torrents. You can d'load them and reinstall your OS from disc. My advice is to re-format you primary HDD ... probably your C: drive ... and start clean. 98 is not so good of a choice if you do that ... W2k is way better and will work fine on almost any PC that was running W98. Here is an index with several windows torrents. Some windows boot help stuff, WXP, W2K with SP4 ... and so on.

Here is a Bit Torrent FAQ plus another FAQ here for wahtever you missed with every piece of info from the basics of bit torrents to all the advanced stuff you need. From those two sources you can go from WTF is a torrent to compressing DVD's for seeding or installing what you download in half a day. After that small amount of time invested you will have access to most any program you will ever want. You can always pay for what you down load if you are so inclined so don't view this as an underhanded way of stealing copyrighted stuff.

Last but not least here is Burst!. I like burst because it is not a resource hog AND is very easy to set up and configure to your staisfaction. Read the instructions if you need to here.

Enjoy bit torrents Spit. I don't go to Hollywood or Block Buster at all anymore. Fuck MPAA and RIAA ...
BoneCrusher is offline   Reply With Quote
Old 02-23-2005, 04:03 PM   #33
Catalyst
Elite Member
 
maniclion's Avatar
 
Join Date: Aug 2003
Location: Hawaii, selling munitions for the war on EcoTerror
Posts: 18,394
Photos: 10

Quote:
Originally Posted by Spitfire
When I start the comp up it says in a DOS like mode
'Hit Del to run setup'
then if I dont do anything It will show the
'Searching for boot records from IDE-O..OK
Invalid system disk
Replace system disk and press any key'
I dont know what to do at that point

If I do hit Del and go to setup, I go to the setup menu, it reads
'Amibios Hiflex Setup Utility Version 1.20'
and gives me options from there.
Do you have a bootable dos floppy? If not make one from another machine and then boot from the floppy, type FDISK/MBR and enter wait till you get the prompt again then hit ctrl-alt-del take out the floppy and see if it boots into windows.



maniclion is online now   Reply With Quote
Old 02-23-2005, 04:08 PM   #34
Catalyst
Elite Member
 
maniclion's Avatar
 
Join Date: Aug 2003
Location: Hawaii, selling munitions for the war on EcoTerror
Posts: 18,394
Photos: 10

I have Windows 3.11 on a floppy I'll sell it to ya for a dollar



maniclion is online now   Reply With Quote
Old 02-23-2005, 04:12 PM   #35
Lift or Die
Elite Member
 
BoneCrusher's Avatar
 
Join Date: Jul 2004
Location: Austin Texas
Posts: 8,580

I was wondering when you were gonna show up Manic ...

Where's Red at ... he's tardy.
BoneCrusher is offline   Reply With Quote
Old 02-23-2005, 05:21 PM   #36
Catalyst
Elite Member
 
maniclion's Avatar
 
Join Date: Aug 2003
Location: Hawaii, selling munitions for the war on EcoTerror
Posts: 18,394
Photos: 10

spent money on a degree, may as well keep my skills honed.



maniclion is online now   Reply With Quote
Old 02-23-2005, 06:21 PM   #37
Metrosexual
Elite Member
 
DOMS's Avatar
 
Join Date: Jul 2004
Location: In a van, down by the river...
Posts: 21,728
Photos: 6

Quote:
Originally Posted by maniclion
I have Windows 3.11 on a floppy I'll sell it to ya for a dollar
I'll do you one better, I have a copy of DOS version 1.



I never lie because I don't fear anyone. You only lie when you're afraid.—John Gotti
DOMS is offline   Reply With Quote
Old 02-23-2005, 06:41 PM   #38
Catalyst
Elite Member
 
maniclion's Avatar
 
Join Date: Aug 2003
Location: Hawaii, selling munitions for the war on EcoTerror
Posts: 18,394
Photos: 10

Quote:
Originally Posted by cfs3
I'll do you one better, I have a copy of DOS version 1.
Oh yeah! CP/M 1.0 source code

2900H: DECLARE BDOS LITERALLY '3206H', TRAN LITERALLY '100H';
/* C O N S O L E C O M M A N D P R O C E S S O R (C C P)

COPYRIGHT (C) GARY A. KILDALL
JUNE, 1975
*/

/* **************** LIBRARY PROCEDURES FOR DISKIO ************* */

MON1: PROCEDURE(F,A);
DECLARE F BYTE,
A ADDRESS;
GO TO BDOS;
END MON1;

MON2: PROCEDURE(F,A) BYTE;
DECLARE F BYTE,
A ADDRESS;
GO TO BDOS;
END MON2;

READRDR: PROCEDURE BYTE;
/* READ FROM CURRENTLY ASSIGNED READER DEVICE */
RETURN MON2(3,0);
END READRDR;

READCHAR: PROCEDURE BYTE;
RETURN MON2(1,0);
END READCHAR;

DECLARE
TRUE LITERALLY '1',
FALSE LITERALLY '0',
FOREVER LITERALLY 'WHILE TRUE',
CR LITERALLY '13',
LF LITERALLY '10',
WHAT LITERALLY '63';

PRINTCHAR: PROCEDURE(CHAR);
DECLARE CHAR BYTE;
CALL MON1(2,CHAR);
END PRINTCHAR;

CRLF: PROCEDURE;
CALL PRINTCHAR(CR);
CALL PRINTCHAR(LF);
END CRLF;

PRINT: PROCEDURE(A);
DECLARE A ADDRESS;
/* PRINT THE STRING STARTING AT ADDRESS A UNTIL THE
NEXT DOLLAR SIGN IS ENCOUNTERED */
CALL CRLF;
CALL MON1(9,A);
END PRINT;

READ: PROCEDURE(A);
DECLARE A ADDRESS;
/* READ INTO BUFFER AT A+2 */
CALL MON1(10,A);
END READ;


DECLARE DCNT BYTE;

INITIALIZE: PROCEDURE;
CALL MON1(13,0);
END INITIALIZE;

SELECT: PROCEDURE(D);
DECLARE D BYTE;
CALL MON1(14,D);
END SELECT;

OPEN: PROCEDURE(FCB);
DECLARE FCB ADDRESS;
DCNT = MON2(15,FCB);
END OPEN;

CLOSE: PROCEDURE(FCB);
DECLARE FCB ADDRESS;
DCNT = MON2(16,FCB);
END CLOSE;

SEARCH: PROCEDURE(FCB);
DECLARE FCB ADDRESS;
DCNT = MON2(17,FCB);
END SEARCH;

SEARCHN: PROCEDURE;
DCNT = MON2(18,0);
END SEARCHN;

DELETE: PROCEDURE(FCB);
DECLARE FCB ADDRESS;
CALL MON1(19,FCB);
END DELETE;

DISKREAD: PROCEDURE(FCB) BYTE;
DECLARE FCB ADDRESS;
RETURN MON2(20,FCB);
END DISKREAD;

DISKWRITE: PROCEDURE(FCB) BYTE;
DECLARE FCB ADDRESS;
RETURN MON2(21,FCB);
END DISKWRITE;

MAKE: PROCEDURE(FCB);
DECLARE FCB ADDRESS;
DCNT = MON2(22,FCB);
END MAKE;

RENAME: PROCEDURE(FCB);
DECLARE FCB ADDRESS;
CALL MON1(23,FCB);
END RENAME;

DECLARE (MAXLEN,COMLEN) BYTE, /* MAXIMUM AND CURRENT LENGTH */
COMBUFF(128) BYTE, /* COMMAND BUFFER */
(TCBP,CBP) BYTE; /* BUFFER POINTERS */

READCOM: PROCEDURE;
/* READ INTO COMMAND BUFFER */
MAXLEN = 128;
CALL READ(.MAXLEN);
END READCOM;



/* **************** END OF LIBRARY PROCEDURES ***************** */


BREAK$KEY: PROCEDURE BYTE;
RETURN MON2(11,0);
END BREAK$KEY;

LIFTHEAD: PROCEDURE;
/* EXPLICIT LIFT IF SHUGART 3900 DRIVE */
CALL MON1(12,0);
END LIFTHEAD;

CSELECT: PROCEDURE BYTE;
/* GET CURRENTLY SELECTED DRIVE NUMBER */
RETURN MON2(25,0);
END CSELECT;

MOVE: PROCEDURE(A,B,L);
etc.
etc.



maniclion is online now   Reply With Quote
Old 02-24-2005, 04:05 PM   #39
Im hungry
Elite Member
 
Join Date: Feb 2004
Location: South Florida
Posts: 2,778
Photos: 2

OK, Im a little confused. If I download Linux to a disk, put it into the comp, start it up I can us the linux startup, and use linux. Can I then delete Windows completely?



Prohibition goes beyond the bounds of reason in that it attempts to control a man's appetite by legislation, and makes a crime out of things that are not crimes. Abraham Lincoln

I hate to advocate drugs, alcohol, violence, or insanity to anyone, but they've always worked for me.
Hunter S. Thompson RIP
Spitfire is offline   Reply With Quote
Old 02-24-2005, 04:07 PM   #40
Im hungry
Elite Member
 
Join Date: Feb 2004
Location: South Florida
Posts: 2,778
Photos: 2

Oh and Its not my main comp. I was really gonna use it like an external drive.



Prohibition goes beyond the bounds of reason in that it attempts to control a man's appetite by legislation, and makes a crime out of things that are not crimes. Abraham Lincoln

I hate to advocate drugs, alcohol, violence, or insanity to anyone, but they've always worked for me.
Hunter S. Thompson RIP
Spitfire is offline   Reply With Quote
Old 02-24-2005, 05:06 PM   #41
Catalyst
Elite Member
 
maniclion's Avatar
 
Join Date: Aug 2003
Location: Hawaii, selling munitions for the war on EcoTerror
Posts: 18,394
Photos: 10

You don't have any Windows disks?



maniclion is online now   Reply With Quote
Old 02-24-2005, 05:46 PM   #42
Im hungry
Elite Member
 
Join Date: Feb 2004
Location: South Florida
Posts: 2,778
Photos: 2

No, I have none, why is it such a problem to be able to download one. At least a start up or something.
Thanks for you help anyway.



Prohibition goes beyond the bounds of reason in that it attempts to control a man's appetite by legislation, and makes a crime out of things that are not crimes. Abraham Lincoln

I hate to advocate drugs, alcohol, violence, or insanity to anyone, but they've always worked for me.
Hunter S. Thompson RIP
Spitfire is offline   Reply With Quote
Old 02-24-2005, 07:54 PM   #43
Dark Prince
 
Lucifer's Avatar
 
Join Date: Feb 2005
Location: Hell
Posts: 250
Photos: 2




Lucifer is offline   Reply With Quote
Old 02-24-2005, 07:57 PM   #44
Dark Prince
 
Lucifer's Avatar
 
Join Date: Feb 2005
Location: Hell
Posts: 250
Photos: 2




Lucifer is offline   Reply With Quote
Old 02-24-2005, 07:59 PM   #45
Dark Prince
 
Lucifer's Avatar
 
Join Date: Feb 2005
Location: Hell
Posts: 250
Photos: 2




Lucifer is offline   Reply With Quote
Old 02-24-2005, 08:11 PM   #46
Stu
cooking up a storm
Elite Member
 
Stu's Avatar
 
Join Date: Nov 2004
Location: UK
Posts: 1,868
Photos: 1

Quote:
Originally Posted by Spitfire
OK, Im a little confused. If I download Linux to a disk, put it into the comp, start it up I can us the linux startup, and use linux. Can I then delete Windows completely?
its not exactly easy you can download linux on to cds, itl require 3 or 4 then you have two options; you can either make the first cd bootable or you can use the easy option and make a linux boot disk

once your into linux setup i think you'l have to delete the windows partition completely then you have to create linux swap partition etc you might want to read up on it first



Stu is offline   Reply With Quote
Old 02-24-2005, 08:13 PM   #47
Stu
cooking up a storm
Elite Member
 
Stu's Avatar
 
Join Date: Nov 2004
Location: UK
Posts: 1,868
Photos: 1

Quote:
Originally Posted by Spitfire
No, I have none, why is it such a problem to be able to download one. At least a start up or something.
Thanks for you help anyway.
http://www.bootdisk.com/



Stu is offline   Reply With Quote
Old 02-25-2005, 09:23 PM   #48
Im hungry
Elite Member
 
Join Date: Feb 2004
Location: South Florida
Posts: 2,778
Photos: 2

True, I will give that a try.
Thanks



Prohibition goes beyond the bounds of reason in that it attempts to control a man's appetite by legislation, and makes a crime out of things that are not crimes. Abraham Lincoln

I hate to advocate drugs, alcohol, violence, or insanity to anyone, but they've always worked for me.
Hunter S. Thompson RIP
Spitfire is offline   Reply With Quote
Reply


Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Here is a good writing that some of you might enjoy! Prince Training 17 10-10-2005 01:49 PM
How to Bench Big Mudge Training 48 04-01-2005 03:59 PM
big butt problem MMM5 Diet & Nutrition 6 02-08-2003 12:21 PM
Big Legs... need advice plz redfx Training 17 01-03-2003 08:42 PM
Holy Hell!!! Look what I found! cornfed Supplements 30 09-20-2002 12:54 PM


All times are GMT -6. The time now is 09:57 PM.


Powered by vBulletin® Version 3.6.12 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0
All logos, trademarks and content on this site are property of 2001-2008 by IronMagazine.com LLC - All Rights Reserved


Loans | Acne Treatments | Mortgage | Car Finance | Electricity Suppliers

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40