An application owner wants to grant write permission to all users for all the files and directories in the application directory. Which of the following is the correct command?()A. chmod -R u+rw /applicationB. chmod -r u+rw /applicationC. chmod -R o+rw /a

题目
An application owner wants to grant write permission to all users for all the files and directories in the application directory. Which of the following is the correct command?()

A. chmod -R u+rw /application

B. chmod -r u+rw /application

C. chmod -R o+rw /application

D. chmod -r o+rw /application


相似考题
更多“An application owner wants to grant write permission to all users for all the files and directories in the application directory. Which of the following is the correct command?() ”相关问题
  • 第1题:

    假设现在已经利用Application对象把变量a赋值为456,那么下列语句中能显示出“456”的是______。

    A.<%=Application"a"%>

    B.<%=Application("a")%>

    C.<%=Application(a)%>

    D.<%=Application:a%>


    正确答案:B

  • 第2题:

    A light used to signal passing intentions must be an ______.

    A.all-round yellow light only

    B.all-round white light only

    C.all-round blue light only

    D.alternating red and yellow light


    正确答案:B

  • 第3题:

    下面的语法格式中,()是将一个值保存到application变量中。

    A.Application.setAttribute(“变量名称”,值);

    B.Application.getAttribute(“变量名”);

    C.Application.getRealPath(“/”)%

    D.Application.getRealPath(“变量名”);


    Application.setAttribute(“变量名称”,值);

  • 第4题:

    OSI参考模型有哪些层,按顺序()。

    A.Application、session、transport、network、physical、physical、datalink

    B.Application、presentation、session、network、transport、datalink,physical

    C.Application、presentation、session、transport、network、datalink、physical

    D.Application、session、transport、physical、network、physical、datalink


    正确答案:C

  • 第5题:

    写出下列Application对象的集合属性和方法所表示的含义  1.Application_onEnd 2.Application_onStart 3.Lock 4.unLock
    1.Application_onEnd应用程序对象结束事件
    2.Application_onStart应用程序对象开始事件
    3.Lock加锁方法
    4.unLock解锁方法

  • 第6题:

    下面代码实现一个站点访问量计数器,空白处的代码为()。 void ____________(object sender, EventArgs e) { Application.Lock(); Application["AccessCount"] = (int)Application["AccessCount"] + 1; Application.UnLock(); }

    A.Application_Start

    B.Application_Error

    C.Session_Start

    D.Session_End


    C