Which command will configure a directory /commonfiles so that a user cannot delete files owned by other users in the same group?()A.chmod +S /commonfilesB.chmod 4775 /commonfilesC.chmod 1777 /commonfilesD.chmod -orgx /commonfiles

题目
Which command will configure a directory /commonfiles so that a user cannot delete files owned by other users in the same group?()

A.chmod +S /commonfiles

B.chmod 4775 /commonfiles

C.chmod 1777 /commonfiles

D.chmod -orgx /commonfiles


相似考题
参考答案和解析
参考答案:C
更多“Which command will configure a directory /commonfiles so that a user cannot delete files owned by other users in the same group?() ”相关问题
  • 第1题:

    Youexecutethefollowingcommandtocreatetwoconsumergroups,FIN_GROUP1andPAY_GROUP1foraplan,PROD_PLAN:BEGINDBMS_RESOURCE_MANAGER.CREATE_SIMPLE_PLAN(SIMPLE_PLAN=>’prod_plan’,CONSUMER_GROUP1=>’fin_group1’,GROUP1_CPU=>80,CONSUMER_GROUP2=>’pay_group1’,GROUP2_CPU=>20);END;Whichthreestatementsaretrue?()

    A.SYS_GROUPgets100%CPUresourcesatlevel1.

    B.FIN_GROUP1gets80%CPUresourcesatlevel1.

    C.FIN_GROUP1gets80%CPUresourcesatlevel2.

    D.PAY_GROUP1gets20%CPUresourcesatlevel1.

    E.PAY_GROUP1gets20%CPUresourcesatlevel2.

    F.OTHER_GROUPgets100%CPUresourcesatlevel1.

    G.OTHER_GROUPgets100%CPUresourcesatlevel2.


    参考答案:A, C, E

  • 第2题:

    If both nodes in a chassis cluster initialize at different times, which configuration example will allow you to ensure that the node with the higher priority will become primary for your RGs other than RG0?()

    A. [edit chassis cluster] user@host# show redundancy-group 1 { node 0 priority 200; node 1 priority 150;preempt; }

    B. [edit chassis cluster] user@host# show redundancy-group 1 { node 0 priority 200; node 1 priority 150; monitoring; }

    C. [edit chassis cluster] user@host# show redundancy-group 1 { node 0 priority 200; node 1 priority 150; control-link-recovery; }

    D. [edit chassis cluster] user@host# show redundancy-group 1 { node 0 priority 200; node 1 priority 150; strict-priority; }


    参考答案:A

  • 第3题:

    下列哪个选项符合Restful的API 设计?

    A.GET /deleteUser?id=123

    B.POST /users/123/delete

    C.DELETE /deleteUser/123

    D.DELETE /users/123


    DELETE /users/123

  • 第4题:

    Giventheconfigurationshownintheexhibit,whichconfigurationobjectwouldbeusedtoassociatebothNancyandWalterwithfirewalluserauthenticationwithinasecuritypolicy?()profileftp-users{clientnancy{firewall-user{password"$9$lJ8vLNdVYZUHKMi.PfzFcyrvX7";SECRET-DATA}}clientwalter{firewall-user{password"$9$a1UqfTQnApB36pBREKv4aJUk.5QF";SECRET-DATA}}session-options{client-groupftp-group;}}firewall-authentication{pass-through{default-profileftp-users;ftp{banner{login"JUNOSRocks!";}}}}

    A.ftp-group

    B.ftp-users

    C.firewall-user

    D.nancyandwalter


    参考答案:A

  • 第5题:

    以下关于delete方法说法错误的是?

    A.$User->where('1')->delete();//删除表中所有数据

    B.$User->where('id=5')->delete(); // 删除id为5的用户数据

    C.$User->delete('1,2,5'); // 删除第1,2,5行的用户数据

    D.$User->where('status=0')->delete(); // 删除所有状态为0的用户数据


    $User->delete('1,2,5'); // 删除第1,2,5行的用户数据

  • 第6题:

    以下那一个选项是查询数据方法:

    A.User.objects.filter(username='wangwu').get(pk=1)

    B.User.objects.filter(id=user_id).update(password='9999')

    C.User.objects.all().delete()

    D.User.objects.get(pk=user_id).delete()


    query()