home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > General Tech Discussion
Join TechIMO for Free!
Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read
Reply Get bargains at  »  Dealighted.com
 
Thread Tools
Currently Active Users: 2111
Discussions: 186,677, Posts: 2,227,832, Members: 230,321
Free Scan: Update Your PC's Outdated Drivers to Optimize Performance
Old June 4th, 2003, 10:09 PM   Digg it!   #1 (permalink)
Member
 
Join Date: May 2003
Location: N 43.240 W 80.247
Posts: 397
Want to learn DOS. Where do I start?

Any good websites you could reccomend or downloadable software/freeware would be very helpful

Computer is offline   Reply With Quote
TechIMO.com Ads - Login or register for less ads.
How many errors does your computer have?

You no longer need to guess! This free stability scan and registry cleaner download will give you a complete diagnosis of your Windows registry, identifying errors and conflicts.

FREE instant scan


Guest, Register Free! to remove this ad and get your tech support questions answered in minutes!
Old June 4th, 2003, 10:15 PM     #2 (permalink)
Ultimate Member
 
Join Date: Oct 2001
Posts: 20,481
What exactly do you want to learn?
If you're learning for command line utilities for 2k/XP thats something different than 'learning DOS'
(NT/2k/XP is not DOS)

vass0922 is online now   Reply With Quote
Old June 4th, 2003, 10:25 PM     #3 (permalink)
Member
 
Join Date: May 2003
Location: N 43.240 W 80.247
Posts: 397
I am using 98. Sorry if I confused you. I really dont know anything. I want to learn the different commands so I can access files other stuff. What is "learning DOS". DOS is just an OS with no graphic interface right? I hope so. Thanks

Computer is offline   Reply With Quote
Old June 4th, 2003, 10:46 PM     #4 (permalink)
Member
 
Join Date: Oct 2001
Location: Tacoma, WA
Posts: 138
I always loved DOS. It did exacly what you told it to do, didn't hog resources and never crashed. Those were the days. Hope I never see them again though.

Do a google search on DOS Commands and you'll get quite a few hits and a couple of walk throughs to get you going.

If you need a real copy of MS DOS, I could probably scare up a couple of disks for ya. Think I still have 4.0, 5.something, 6.0 and 6.2.
travis4prez is offline   Reply With Quote
Old June 4th, 2003, 10:54 PM     #5 (permalink)
Ultimate Member
 
DoctorReno's Avatar
 
Join Date: Mar 2003
Posts: 1,253
You might be able to get DOS 6.22 from BootDisk.com
__________________
If you can't say something nice... SAY IT REALLY LOUD!!
DoctorReno is offline   Reply With Quote
Old June 5th, 2003, 03:39 AM     #6 (permalink)
Member
 
Join Date: Feb 2000
Posts: 81
youngqd is offline   Reply With Quote
Old June 5th, 2003, 03:45 AM     #7 (permalink)
Ultimate Member
 
joker_927's Avatar
 
Join Date: May 2002
Location: California, USA
Posts: 2,377
I have a 500 page book here with the word DOS on the front. What a novelty item.
__________________
Abit AW9D-Max | E6300 | XP-120 | Panaflow 120mm | 2x 1GB G.Skill DDR2-800 | EVGA 7800GT (500/1200) | Tagan 480w
joker_927 is offline   Reply With Quote
Old June 5th, 2003, 01:47 PM     #8 (permalink)
Indispensable Member
 
surreal's Avatar
 
Join Date: Oct 2001
Location: Meechigan
Posts: 13,083
Send a message via ICQ to surreal Send a message via AIM to surreal Send a message via Yahoo to surreal
boot to a dos prompt and type /help
(come on guys give me a hand it's been a while )

Help commands<<<<oops I didn't look at youngqd's link

other stuff
surreal is offline   Reply With Quote
Old June 5th, 2003, 01:51 PM     #9 (permalink)
Leader of the Crab People
 
Redwolf's Avatar
 
Join Date: Oct 2001
Location: NCSU
Posts: 4,372
Send a message via ICQ to Redwolf Send a message via AIM to Redwolf Send a message via Yahoo to Redwolf
Okay, you need to get olddos.exe form mocrosft. Hold up while I search for it.

http://www.undercoverdesign.com/dosg...um/mesg/56.htm

Put the program in a new directory and run it. It'l extract files (say yes when it asks). Now the newly extracted help.com file. Press Alt+Enter to go from small to full screen. Have fun reading.

It doesn't explain the basics of DOS, so I will. It's pretty easy, really.

You have the [rompt. It's usually somethign like:

C:\>

This can be changed but that's usually what it is.

You press enter after every line. This executes the command.

As you probably know, windows sets up in a system of drives, files, and directories. Like, oh:

Drives:

Would be like A:, B:, C:, so on. To switch to a drive, just type the drive letter with a colon afterwards.

C:\>A:_ <return>
A:\>_

(NOTE: A: is a floppy drive. Drives have to be accessed. So if there is no floppy in A:, you can't use it.)

To change directories, use 'cd' -quotes. Like:

C:\>cd windows_ <return>
C:\WINDOWS>_

Always put a space after a command. The command, in this case, is 'cd'.

If you want to go to another directory, starting from the C: drive, do this:

C:\WINDOWS>cd \
C:\>_

or something like

C:\WINDOWS>cd \MYDOCU~1
C:\My Documents>_

To go to a subdirectory from where you are now, don't put the backslash. Like:

C:\WINDOWS>cd system
C:\WINDOWS\SYSTEM>_

To go up a directory, use two periods. Like:

C:\WINDOWS\SYSTEM>cd ..
C:\WINDOWS>

Now, time dor a more complex command. The dir command.

The dir command let's you 'see' what's in a directory. Use it as such:

C:\>dir

You may notice that there is so much, it goes past the screen. A quick remedy is the /p switch.

Switches or options are little things you tack on at the beginning of the command that affect how the command operates. Now try this:

C:\>dir /p

Much better, eh?

Another command is the /w command. Try this:

C:\>dir /w

Now cd into your windows\system directory.

C:\WINDOWS\SYSTEM>

Ok, now try this:

C:\WINDOWS\SYSTEM>dir /w

It's too big, eh? Well, we can combine switches. Try this:

C:\WINDOWS\SYSTEM>dir /w /p

Much better.

Lets say you want to see what's in another directory, but you dont' want to chnage directories. Do it like this:

C:\WINDOWS\SYSTEM>dir c:\mydocu~1

or

C:\WINDOWS\SYSTEM>dir ..

Now add switches.

C:\WINDOWS\SYSTEM>dir /p /w ..

very good.

I'll add more later.

Last edited by Redwolf : June 5th, 2003 at 02:33 PM.
Redwolf is offline   Reply With Quote
Old June 5th, 2003, 01:53 PM     #10 (permalink)
Indispensable Member
 
surreal's Avatar
 
Join Date: Oct 2001
Location: Meechigan
Posts: 13,083
Send a message via ICQ to surreal Send a message via AIM to surreal Send a message via Yahoo to surreal
thanks Redwolf, you'd think on a nerd site this thread would have gotten 50 replys!
surreal is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may post new threads
You may 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 On
Refbacks are Off

Most Active Discussions
Is It Just Me? (664)
Best Boot Drive Imaging Software (9)
Bought an AGP "HIS Radeon HD 3.. (18)
Video card compatability. (7)
File associations (5)
Outlook add-in won't remove. (10)
Is this a good laptop for gamming? (6)
Misery Loves Company... (1873)
Presario Help (6)
Recent Discussions
[Help] Computer Freeze (4)
Putting together my wish list (21)
Acer SA80 Upgrade (2)
Best Boot Drive Imaging Softwar.. (9)
Computer won't start (10)
Fallout 3 problem (2)
Move folders from desktop to My.. (2)
graphics card driver issue (1)
What graphics card range for q9.. (1)
Seald copy of windows 95 for sa.. (1)
Magellan RoadMate 1412 GPS Perf.. (2)
FS: Dell 6000 laptop, modded 36.. (2)


All times are GMT -4. The time now is 09:54 PM.
TechIMO Copyright 2008 All Enthusiast, Inc.



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