zoukankan      html  css  js  c++  java
  • linux操作练习题

    linux操作练习题

    一、总结

    一句话总结:

    多练练一下子就会了,很简单的

    1、在当前目录下建立文件exam.c,将文件exam.c拷贝到/tmp这个目录下,并改名为 shiyan.c?

    touch exam.c
    cp /root/exam.c /tmp/shiyan.c

    2、在任何目录下回到用户主目录?

    cd /tmp
    cd

    3、打印当前目录(隐藏文件也显示)?

    ll -a

    4、在当前目录中新建文件text并设置文件的属性为文件属主(u)增加执行权限与文件属主同组用户(g)增加写权限其他用户(o) 删除读权限?

    touch text
    chmod u+x text
    chmod g+w text
    chmod o-r text

    5、创建用户xu和liu并将/home/xu目录中的所有文件拷贝到目录/home/liu中?

    useradd xu && useradd liu
    ll /home/xu && cd /home/xu
    cp -r /home/xu/* /home/liu

    6、用长格式列出/home目录下所有的文件包括隐藏文件?

    cd /home
    ll -a

    7、创建5个文件分别是 1.txt 2.txt 3.txt 4.txt 5.txt,压缩这5个文件,压缩包的名字是hailiang.tar?

    touch 1.txt 2.txt 3.txt 4.txt 5.txt
    tar -zcvf hailiang.tar *.txt 或者 tar -zcvf hailiang.tar 1.txt 2.txt 3.txt 4.txt 5.txt

    8、建立文件 file1.txt 并更名为 file2.txt?

    touch file1.txt
    mv file1.txt file2.txt

    9、用一行命令修改002目录下所有文件属性对拥有者、群组可读可写可执行?

    chmod 777 *

    10、新建一个组group1 ,将root用户添加到该组,并查看是否添加成功?

    groupadd group1 && gpasswd -a root group1
    id root && groups root

    11、建立文件ff.txt 并用数字的形式(绝对权限)把文件的权限改为rw-rw-rw-?

    touch ff.txt
    chmod 666 ff.txt

    12、用vi建立文件bbbb.txt 并将用户名的加入其中保存退出?

    vi bbbb.txt
    插入模式:输入"root"

    13、查看当前目录下所有的文件或目录(含.开头的),把查看结果生成文件ls.txt?

    ls -la > ls.txt
    ll -a

    14、启动vi,更改/etc/passwd中的xu和liu密码信息为不需要密码登陆?

    vi /etc/passwd
    把xu和liu的'x'删掉

    15、将/home目录拷贝到/root目录下,然后再将root下的home及子目录删除?

    cp -R /home /root
    rm -rf /root/home

    16、查找用户账号文件中是否存在test用户?

    cat /etc/passwd | grep test
    cat /etc/passwd | grep newstudent

    17、将当前目录中扩展名为txt、doc和bak的文件全部复制到/home目录中?

    cp *.txt /home
    cp *.doc /home
    cp *.bak /home

    18、重启和关机命令?

    shutdown now(关机命令)
    reboot(重启命令)

    19、将u盘(设备名sdc)挂载到/mnt/usb_disk目录?

    mount /dev/sdc /mnt/usb_disk

    二、内容在总结中

     
  • 相关阅读:
    【转】VS2010中 C++创建DLL图解
    [转]error: 'retainCount' is unavailable: not available in automatic reference counting mode
    [转]关于NSAutoreleasePool' is unavailable: not available in automatic reference counting mode的解决方法
    【转】 Tomcat v7.0 Server at localhost was unable to start within 45
    【转】Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds. If
    【转】SVN管理多个项目版本库
    【转】eclipse安装SVN插件的两种方法
    【转】MYSQL启用日志,和查看日志
    【转】Repository has not been enabled to accept revision propchanges
    【转】SVN库的迁移
  • 原文地址:https://www.cnblogs.com/Renyi-Fan/p/10949362.html
Copyright © 2011-2022 走看看