Linux Interview Questions For software testers
Linux Interview Questions For software testers Linux面试题专栏, 软件测试面试题专栏 Software testing ? Questions and Answer
2021-12-07 14:22
170 
Linux启动shell
脚本 #!/bin/bash #设置字符集 export LC_ALL=en_US.UTF-8 #检查网络状态 ping -c 5 www.baidu.com [ $? -eq 0 ] || { echo 网络
2023-07-03 08:48
170 
Linux如何停止一个进程?
要停止一个进程,可以使用以下命令: 1. 使用kill命令: kill pid 其中,pid是要停止的进程的ID。 2. 使用killall命令: killall process_name 其中,pr
2023-06-27 09:20
171 
Linux管理员面试题 Linux admin interview questions
Linux管理员面试题 Linux admin interview questions 1. How do you take a single line of input from the user in a she
2021-12-07 14:22
172 
CentOS Linux系统下更改Apache默认网站目录
Apache默认的网站目录是在/var/www/html,我们现在要把网站目录更改到/home/wwwroot/web1/htdocs,操作如下cd/home mkdirwwwroot cdwwwroot mkdir
2021-12-07 14:30
172 
Linux操作系统下文件路径命令
绝对路径和相对路径 shell命令: cd /home :前面带有:/是绝对路径,直接进入home目录下; cd .. :进入上一级目录; cd - :返回上次目录; pwd :显示当前目录; cd~ :
2021-12-07 14:09
172 
每天一个linux命令(15):tail 命令
tail 命令从指定点开始将文件写到标准输出.使用tail命令的-f选项可以方便的查阅正在改变的日志文件,tail -f filename会把filename里最尾部的内容显示在屏幕上,并且不但刷新,使你看到最新的文
2021-12-07 14:15
173 
如何解决linux下apache启动时httpd: apr_sockaddr_info_get()
今天在家里的RHLE5.5上安装apache的时候,先用user1用户./configure命令配置,然后才用root用户make && make install,结果apache起来的时候就报如下错误:httpd:
2021-12-07 14:31
173 
返回顶部 留言