answersLogoWhite

0

What else can I help you with?

Related Questions

How can you create a file named Isout using the command Is and redirections?

ls > lsout


How would you create an ou named Simpson from the command line?

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


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 command will create a folder named data on the C drive?

When in Command(prompt) [Cmd] type: MD C:\Data <enter> It's as simple as that! Note: You must have the permission to create folders on C-drive..


How do you create a new application partition in Windows Server 2003?

The DnsCmd command is used to create a new application directory partition. Ex. to create a partition named “NewPartition “ on the domain controller DC1.contoso.com, log on to the domain controller and type following command. DnsCmd DC1/createdirectorypartition NewPartition.contoso.com


What was the capsules name on Apollo 11?

The Lunar Module was named Eagle and the Command Module was named Colombia


What was the name of the command module of the Apollo 11 spacecraft of 1969?

The Command Module was called Columbia ( the lunar module was named Eagle.)


What was the name of the command module?

The command module of the Apollo 11 mission was named "Columbia."


What was the name of the Apollo 11 Command Module?

The Apollo 11 Command Module was named "Columbia."


What is touch in Linux?

The touch command is used to change the access times and modification times. For example, if I want to change a file to say it was last modified on February 23, 1985, at 12:31 PM, then all I have to do is:touch -m -t 198502231231 file.txt*********************************************************Another use of touch is to create a new file. For example, this terminal command: touch test1 will create a new file named test1 in the home directory. It will show when the command ls is used.


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.


Which Linux command can be used to create and reset password for a user?

$ passwd to change your own password:Log in as root to change the password for a user named fred:# passwd fredCommands to add a new user and then set a password for a user named fred:# adduser fred# passwd fred