answersLogoWhite

0

What else can I help you with?

Related Questions

What is the command to execute it sfc?

that is the command for system file checker.


What is a file system used for?

sir system file we used for execute the system with windows . Because without system file we can not boot the system properly may be this is correct answers .


When would you use system file checker what is the command to execute it?

Use system file checker to verify the version of all system files when Windows loads. Useful when you suspect system files are corrupted, but you can still access the Windows desktop. Command to execute it: Sfc with parameters.


What is the procedure of execute a script in shell in ubantu?

For any Unix or Linux based operating system, make the text file readable and executable and then invoke (call) it by the file name, which will execute the script.


Minix file whose honour has uid equals 12 and gid equals 1 has a mode rwxr-x--- another user with uid equals 6 and gid equals 1 tries to execute the file what will happen?

I believe since the user has gid=1, the file has gid=1, and the group permission is r-x(read and execute), the file will execute normally.


What does the CHMOD command do?

Changes the permissions of a file or folder to grant or deny the ability to read, write, and/or execute the file for the current owner, the current group, or for all users of the system.


What are typical access rights that may be granted or denied to a particular user for a particular file?

Read, write, execute, and functions in software objects.


Can you execute more than one sql file with one batch file?

No.


How do you save and open catiav6r2009?

The Catiav6 is not "file based" like the v5 is. These files are managed by the PDM system. With the v6 there is no file + save File+ open. It would be best to obtain V6 documentation to porperly execute this task.


How do you make a command on Ubuntu 9.04?

Anything can be made into a command on a Linux system. The steps are easy. First, using any text editor (vim, emacs, etc.) create a text file. Put anything you want to do in this file. Save the file. Make sure the file you just created has read and execute permissions (chmod). That's it! Now you have a command that you can execute in Linux.


What are the main purposes of OS?

The main purpose of the Operating System (OS) is to Control & Manage Input/Output functions, File System, Memory allocation & execute processes through Processor.


What is the difference between an executable file and a .class file?

Both are binary files but the differences between those are:- 1) we can execute an executable file while we cannot execute an object file. 2) An object file is a file where compiler has not yet linked to the libraries, so you get an object file just before linking to the libraries, so still some of the symbols or function definitions are not yet resolved which are actually present in the libraries, and that's why we cannot execute it. Once an object file is linked with the library by the compiler, then all the symbols are resolved and we get an executable file which can be executed on the appropriate platform. So basically the difference is that we get an object file when we don't link with library while executable file is with the linking phase. In gcc we can direct compiler not to link with library and so it will prepare the object file :- gcc -c test.c It will automatically create test.o object file when you try to execute it like:- ./test.o cannot execute binary file