pavement

DOS to FreeBSD cheat sheet

From FreeBSDwiki
(Difference between revisions)
Jump to: navigation, search
(Looking good!)
 
m (Added further entries)
Line 1: Line 1:
The following page contains a cheat-sheet of DOS commands to their FreeBSD equivalents:
+
The following article contains list of commands available on Microsoft's DOS and Windows platforms and the equivalent command on FreeBSD.  This can be considered a 'cheat-sheet' for quick reference.
 +
 
 +
The list is sorted alphabetically by the DOS command name.
  
 
{| border="1" cellpadding="5" cellspacing="0"
 
{| border="1" cellpadding="5" cellspacing="0"
 
|-
 
|-
 +
!Name
 
!DOS
 
!DOS
 
!FreeBSD
 
!FreeBSD
 
!Notes
 
!Notes
 
|-
 
|-
|move
+
| Setting file attributes
|[[mv]]
+
| attrib
 +
| [[chmod]]
 +
| See also related [[chown]]
 +
|-
 +
| Check Disk
 +
| chkdsk
 +
| [[fsck]]
 
|
 
|
 
|-
 
|-
 +
| Delete
 +
| del
 +
| [[rm]]
 +
|
 +
|-
 +
| Directory listing
 +
| Dir
 +
| [[ls]]
 +
|
 +
|-
 +
| Disk Partitioning
 +
| fdisk
 +
| [[fdisk]]
 +
| See also [[disklabel]]
 +
|-
 +
| Formating a disk
 +
| format
 +
| [[newfs]]
 +
|
 +
|-
 +
| Make a directory
 +
| mkdir
 +
| [[mkdir]]
 +
|
 +
|-
 +
| File pager
 +
| More
 +
| [[more]]
 +
| The commands share the same name and function but are implemented differently
 +
|-
 +
| Moving file(s)
 +
| move
 +
| [[mv]]
 +
|
 +
|-
 +
| Renaming file(s)
 +
| ren
 +
| [[mv]]
 +
|
 
|}
 
|}

Revision as of 15:58, 10 May 2008

The following article contains list of commands available on Microsoft's DOS and Windows platforms and the equivalent command on FreeBSD. This can be considered a 'cheat-sheet' for quick reference.

The list is sorted alphabetically by the DOS command name.

Name DOS FreeBSD Notes
Setting file attributes attrib chmod See also related chown
Check Disk chkdsk fsck
Delete del rm
Directory listing Dir ls
Disk Partitioning fdisk fdisk See also disklabel
Formating a disk format newfs
Make a directory mkdir mkdir
File pager More more The commands share the same name and function but are implemented differently
Moving file(s) move mv
Renaming file(s) ren mv
Personal tools