
Linux
文章平均质量分 51
linux常用知识
chose2875
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux 安装antiword(doc文件转文本)
cd /usr/local 下载 wget http://www.winfield.demon.nl/linux/antiword-0.37.tar.gz 解压 tar -zxvf antiword-0.37.tar.gz 重命名 mv antiword-0.37 antiword 进入运行目录 cd antiword/ 安装 make && make install 执行antiword,验证安装是否成功 建议 可选操作:安装时,自动安装到了/root/目录下,只有roo.原创 2021-11-17 08:03:30 · 1835 阅读 · 0 评论 -
LAMP Linux+Apache2.4+Mysql8.0+PHP7.2源码安装
Apache安装 #添加依赖 [root@VM_0_15_centos ~]# cd /usr/local //目录名可自行更改 # 获取apr [root@VM_0_15_centos local]# wget http://mirror.bit.edu.cn/apache/apr/apr-1.7.0.tar.gz [root@VM_0_15_centos local]# tar -zxvf apr-1.7.0.tar.gz [root@VM_0_15_centos local]# cd apr-.原创 2020-05-22 10:00:08 · 386 阅读 · 0 评论 -
cmake安装
[root@VM_0_15_centos local]# wget https://cmake.org/files/v3.17/cmake-3.17.2.tar.gz #注:下载很慢,建议先用迅雷下载,然后导到服务器 [root@VM_0_15_centos local]# tar -zxvf cmake-3.17.2.tar.gz [root@VM_0_15_centos local]# mv cmake-3.17.2 cmake [root@VM_0_15_centos local]# cd cmak.原创 2020-05-21 18:04:04 · 153 阅读 · 0 评论 -
file_put_contents(xxx.php):ed to open stream: Permission denied
文件打开失败,权限不够。 在ThinkPHP中,缓存是需要添加更高权限的。可以单独给ThinkPHP下的runtime文件附加666以上权限 linux下命令为:chmod -R 666 runtime原创 2020-04-29 15:07:49 · 192 阅读 · 0 评论 -
个人总结的一些常用linux命令
cd ~ //回到用户目录 cd / //进入根目录 cd /dirname //进入根目录下dirname文件夹 cd ../ //返回上一级目录 mkdir dirname //创建目录 touch test.txt //创建文件 cp //复制 mv //移动、重命名 rm ...原创 2020-04-29 09:54:30 · 235 阅读 · 0 评论 -
LAMP The requested URL /index.html was not found on this server.
造成这个错误的原因可能有以下几点: 1. httpd.conf 配置文件下DocumentRoot未配置正确; 2. domain.conf 配置文件如下 (domain.conf 是针对多域名的解析文件) <VirtualHost *:80> DocumentRoot "/var/tp6/public" ServerName www.tp6.com &...原创 2020-04-27 16:17:33 · 7856 阅读 · 0 评论 -
Linux下各类颜色文件所代表的意思
白色:表示普通文件 灰色:表示其它文件 蓝色:表示目录 绿色:表示可执行文件 红色:表示压缩文件 红色闪烁:表示链接的文件有问题 浅蓝色:链接文件 黄色:表示设备文件 粉红色:表示套接字文件 暗黄色文件:表示管道 ...原创 2020-04-27 14:17:07 · 472 阅读 · 0 评论 -
服务器Linux安装Apache无法访问
网上关于这类问题解答很多,原因总计就以下几点: 1 . 防火墙未开启80端口; 2 . httpd未启动或启动失败; 3 . 例如阿里云服务器,需要但是在平台设置安全规则,默认情况只开启了22端口的安全规则,需要自己去额外配置进去。 ...原创 2020-04-21 17:36:25 · 940 阅读 · 0 评论 -
Linux中常用关机,重启,注销命令
关机: shutdown -h now #立刻关机重启,工作中常用 重启: reboot #工作中常用 shutdown -r now #工作中常用 注销: exit #工作中常用 ctrl+d #工作中常用 更多https://www.cnblogs.com/h-c-g/p/11099823.html ...原创 2020-04-21 14:09:13 · 155 阅读 · 0 评论