Sponsored Content
Full Discussion: Anatomy of DOS
Special Forums Windows & DOS: Issues & Discussions Anatomy of DOS Post 302599645 by methyl on Friday 17th of February 2012 05:19:08 PM
Old 02-17-2012
On the Google front, it's spelt "MS-DOS".
MS-DOS - Wikipedia, the free encyclopedia

There is extensive to the point of exhaustive documentation available from Microsoft.
Just use Google Advanced Search and the term "MS-DOS" confined to the domain "microsoft.com".
One hit is this overview of the MS-DOS Command Prompt in Windows XP:
Microsoft Corporation

After you break out to the Command Prompt with Start/Run/cmd, just type "help" to get a list of available commands. You can then get further help with "commandname /?" or "help commandname".

Hope this will get you started.


Ps: If you want to see everything which is on the C:\ partition from the MS-DOS Command Prompt in Windows XP:
Code:
dir c:\ /s /p

On a mature Windows XP system there will be over 100,000 files.
Enjoy.

Pps. Finding all the disc partitions (where there is more than one) is easier with the standard Windows "My Computer" link to "Windows Explorer".

Last edited by methyl; 02-17-2012 at 06:32 PM.. Reason: evolving post
 

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

What if I have a really, really, really, old DOS?

Lately I've been trying to fix a 1991 Packard Bell, it's been running fine, but it's eating my memory for fun and taking away my pages. Is it worth my time trying to fix it, and is it possible to put new programs on it? thank you (9 Replies)
Discussion started by: Saz43
9 Replies

2. Windows & DOS: Issues & Discussions

DOS Keys not working

Hi, In my MSDOS version on windows'98, many keys are not working. I feel that my version is old and I wnt to update it. Can anyone tell me how can i do so. Please tell me soon. Thanks a lot. -Kinnaree :confused: (1 Reply)
Discussion started by: kinnaree
1 Replies

3. UNIX for Dummies Questions & Answers

DOS to Unix translator

I know nothing of unix and didn't know where to start. I've heard of a DOS to Unix translator, and since I know DOS pretty well, I thought that this program would be perfect. Any help you could give me would be appreciated. Bryan (1 Reply)
Discussion started by: bferguson
1 Replies

4. Windows & DOS: Issues & Discussions

Viruses sneeking through MS-DOS?

I had just recently experienced, a bad experience... Apperently, a worm got into my computer a created itself in my MS-DOS. No serious damage was done, but I did a little study on it, through my computer. The virus got thought my scan, by coding itself as an HTML file. Don't know why it did that,... (2 Replies)
Discussion started by: hdk_mkr
2 Replies

5. UNIX for Dummies Questions & Answers

DOS command for ps

I have navigated every DOS and UNIX FAQ to find the DOS equivalent of the UNIX ps command (ps -f would be even better) but all listings of DOS<>UNIX commands do not have it (they all have the same basic commands listed). DOS must have a way of detecting running processes and TSRs. mem /c is the... (7 Replies)
Discussion started by: dancingfool
7 Replies

6. Windows & DOS: Issues & Discussions

Ms-DOS Download

Please where can i get the origanal MS-DOS, I need it. Not mandatory but botting from a floppy is best. (9 Replies)
Discussion started by: Irish Jimmy
9 Replies

7. Shell Programming and Scripting

how I change dir in dos

Hi I have a dos batch file in window server where I call a cmd command for creating some db. this cmd commad is located in e:\data\abcd\xyz.cmd. Now I call this batch file from unix ssh.sh but my access point is D in window server here I want to change the dos prompt to e:\data\abcd. in... (3 Replies)
Discussion started by: Jamil Qadir
3 Replies

8. Linux

dos-path / un-dos-path compatibility with cygwin

Hello ; I have a problem running some script on dos . when i run : C: ls /temp ls: cannot access /temp: No such file or directory but when i run C: ls \temp windriver backup remotebackup also when i run C: ls temp windriver backup remotebackup The... (4 Replies)
Discussion started by: mulder20
4 Replies

9. Linux

Dos shell

Dear all, I am trying to write a unix shell with C++ that is similar to Windows command line. I planned to call it Dosh (DOS-sHell).That means you can directly run dos or win32 console programs with it. It will be distributed according to the license g GPL. Any advice? (This is my first c++ program... (3 Replies)
Discussion started by: elgarteo95
3 Replies

10. Cybersecurity

What I think is a DoS attack

About 3 days ago our Apache logs started filling with the following errors: mod_ssl: SSL handshake failed (server <weberver>:443, client 41.235.234.172) (OpenSSL library error follows) OpenSSL: error:1408A0B7:SSL routines:SSL3_GET_CLIENT_HELLO:no ciphers specified These initially were... (1 Reply)
Discussion started by: ccj4467
1 Replies
MOUNT_MSDOSFS(8)					    BSD System Manager's Manual 					  MOUNT_MSDOSFS(8)

NAME
mount_msdosfs -- mount an MS-DOS file system SYNOPSIS
mount_msdosfs [-9ls] [-D DOS_codepage] [-g gid] [-L locale] [-M mask] [-m mask] [-o options] [-u uid] [-W table] special node DESCRIPTION
The mount_msdosfs utility attaches the MS-DOS file system residing on the device special to the global file system namespace at the location indicated by node. This command is normally executed by mount(8) at boot time, but can be used by any user to mount an MS-DOS file system on any directory that they own (provided, of course, that they have appropriate access to the device that contains the file system). The options are as follows: -o options Use the specified mount options, as described in mount(8). The following MSDOS file system-specific options are available: large Support file systems larger than 128 gigabytes at the expense of 32 bytes of kernel memory for each file on disk. This mem- ory will not be reclaimed until the file system has been unmounted. longnames Force Windows 95 long filenames to be visible. shortnames Force only the old MS-DOS 8.3 style filenames to be visible. nowin95 Completely ignore Windows 95 extended file information. -u uid Set the owner of the files in the file system to uid. The default owner is the owner of the directory on which the file system is being mounted. -g gid Set the group of the files in the file system to gid. The default group is the group of the directory on which the file system is being mounted. -m mask Specify the maximum file permissions for files in the file system. (For example, a mask of 755 specifies that, by default, the owner should have read, write, and execute permissions for files, but others should only have read and execute permissions. See chmod(1) for more information about octal file modes. Only the nine low-order bits of mask are used. The value of -M is used if it is sup- plied and -m is omitted. The default mask is taken from the directory on which the file system is being mounted. -M mask Specify the maximum file permissions for directories in the file system. The value of -m is used if it is supplied and -M is omit- ted. See the previous option's description for details. -s Force behaviour to ignore and not generate Win'95 long filenames. -l Force listing and generation of Win'95 long filenames and separate creation/modification/access dates. If neither -s nor -l are given, mount_msdosfs searches the root directory of the file system to be mounted for any existing Win'95 long filenames. If no such entries are found, but short DOS filenames are found, -s is the default. Otherwise -l is assumed. -9 Ignore the special Win'95 directory entries even if deleting or renaming a file. This forces -s. -L locale Specify locale name used for file name conversions for DOS and Win'95 names. By default ISO 8859-1 assumed as local character set. -D DOS_codepage Specify the MS-DOS code page (aka IBM/OEM code page) name used for file name conversions for DOS names. -W table This option is preserved for backward compatibility purpose only, and will be removed in the future. Please avoid using this option. Specify text file name with conversion table: iso22dos, iso72dos, koi2dos, koi8u2dos. EXAMPLES
To mount a Russian MS-DOS file system located in /dev/ada1s1: mount_msdosfs -L ru_RU.KOI8-R -D CP866 /dev/ada1s1 /mnt To mount a Japanese MS-DOS file system located in /dev/ada1s1: mount_msdosfs -L ja_JP.eucJP -D CP932 /dev/ada1s1 /mnt SEE ALSO
mount(2), unmount(2), fstab(5), msdosfs(5), mount(8) List of Localized MS Operating Systems: http://www.microsoft.com/globaldev/reference/oslocversion.mspx. HISTORY
The mount_msdosfs utility first appeared in FreeBSD 2.0. Its predecessor, the mount_pcfs utility appeared in FreeBSD 1.0, and was abandoned in favor of the more aptly-named mount_msdosfs. The character code conversion routine was added by Ryuichiro Imura <imura@ryu16.org> in 2003. CAVEATS
The use of the -9 flag could result in damaged file systems, albeit the damage is in part taken care of by procedures similar to the ones used in Win'95. BSD
October 1, 2013 BSD
All times are GMT -4. The time now is 12:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy