answersLogoWhite

0

How would you create an OU named SIMPSON from the command line?

dsadd ou "ou=Simpson,dc=simpdomain, dc=com"

dsadd Simpson ou

Simpson ou dsadd

It's not possible to create OUs from the command line

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the Linux command to create a file named security?

As files can be of any number of types, there is no single command that will do this. You would use the program associated with that file type to create a file. If you wanted to create a "blank" file, that has no content and uses no space, use the command touch filename.


What is the use of MD command?

The MD command, short for "Make Directory," is used in command-line interfaces, such as Windows Command Prompt and Unix/Linux shell, to create a new directory (or folder). By specifying a name after the command, users can establish a structured hierarchy for file organization. For example, typing md new_folder would create a directory named "new_folder" in the current location. It can also create multiple directories at once if multiple names are provided.


What command would you use to create a new directory on a unix type of system?

Use the 'mkdir' command


Which command from JDK should be used to execute the main method of a class named smallprog?

To execute the main method of a class named smallprog using the JDK, you would use the java command in the terminal or command prompt. The command would be: java smallprog. Ensure that the class is compiled and available in the classpath before executing this command.


What command would you utilize to change the ownership group of a file named xxx.php?

If you are asking about group ownership change then the command is 'chgrp'


What command would you use to create a directory called testcopy?

mkdir testcopy


Which task can you perform with the dd command?

There are lots of tasks you can perform with the dd command. The most common would be to create an image file from a disk or partition. Another use would be to create an empty file of an arbitrary size.


How do you create a UDF-ISO image in Linux?

To create a UDF-ISO image in Linux, you can use the mkisofs or genisoimage command with the -udf option. For example, the command would look like this: mkisofs -o output.iso -udf /path/to/directory. This command generates a UDF-compliant ISO image named output.iso from the specified directory. Make sure to have the necessary tools installed, which are often available in the default package repositories.


How do you create a data base?

If your database program uses standard SQL commands, you would use the CREATE DATABASE command.


How To create Directory Using Batch File?

You can make a folder with batch by using the command: md Foldername Example: @echo off md WikiAnswers exit The batch file would make a folder named WikiAnswers, and it would appear on your desktop


What would be the effect of finger i command?

Probably nothing, unless there is actually a user named "i" on the system.


How would you create a user named John Doe who has the user name jd and who belongs to group 65535 from the command line?

The exact command varies with different Unix or Linux systems, but usually it looks like: adduser --home /home/jd --shell /bin/bash --group 65535 jd Check the adduser command on your system for exact details.