随笔分类 -  linux

摘要:1.使用OSS作为文件服务器,保存一些常用的资料 开通方法就不说了,主要是linux系统上传和下载相关内容 首先,需要安装客户端 https://help.aliyun.com/document_detail/50452.html?spm=a2c4g.11186623.6.841.82037f85B 阅读全文
posted @ 2020-10-14 15:31 酸奶加绿茶 阅读(352) 评论(0) 推荐(0) 编辑
摘要:1.权限不够 当前用户没有写权限(w),另外用户创建的文件和文件夹默认的权限通过umask进行控制。 2.没有空间了 no space 3.inode不够了 df -i 看下inode是否用完了 4.重名了 当前目录已经有同名的文件了 https://blog.csdn.net/xuz0917/ar 阅读全文
posted @ 2020-01-03 08:42 酸奶加绿茶 阅读(1591) 评论(0) 推荐(0) 编辑
摘要:cat filename(待读取的文件) | while read line do echo $line done 阅读全文
posted @ 2019-12-16 17:16 酸奶加绿茶 阅读(841) 评论(0) 推荐(0) 编辑
摘要:1.extglob模式开启之后Shell可以另外识别出5个模式匹配操作符,能使文件匹配更加方便. 不然不识别 5个模式匹配操作符 参考资料: https://www.cnblogs.com/xuange306/p/10137480.html https://blog.csdn.net/taiyang 阅读全文
posted @ 2019-11-08 09:33 酸奶加绿茶 阅读(417) 评论(0) 推荐(0) 编辑
摘要:在 grub 的 kernel 配置后面,添加 acpi_pad.disable=1 重启机器之后,开机就不会自动加载 acpi_pad 模块 一:linux6 二:RHEL7用了grub2,而不再是grubgrub开机会经历一下几步:1.BIOS 自检,检查硬件2.激活 MBR,MBR 上不存在文 阅读全文
posted @ 2019-10-22 15:33 酸奶加绿茶 阅读(1059) 评论(0) 推荐(0) 编辑
摘要:参考资料: 1.https://www.cnblogs.com/mchina/p/linux-centos-logical-volume-manager-lvm.html#top 阅读全文
posted @ 2019-08-20 14:37 酸奶加绿茶 阅读(122) 评论(0) 推荐(0) 编辑
摘要:在Linux/Unix类操作系统上, DISPLAY用来设置将图形显示到何处,DISPLAY should be set to your client IP, not the server IP 执行xhost +命令(使得所有客户都可以访问) export DISPLAY=192.168.222. 阅读全文
posted @ 2019-08-19 18:44 酸奶加绿茶 阅读(416) 评论(0) 推荐(0) 编辑
摘要:Centos7系统语言配置信息保存在/etc/locale.conf文件内 更改步骤如下: 1.使用vim打开locale.conf文件 vim /etc/locale.conf2.编辑locale.conf文件后保存退出 LANG="en_US.UTF-8"或LANG="zh_CN.UTF-8" 阅读全文
posted @ 2019-08-19 17:48 酸奶加绿茶 阅读(619) 评论(0) 推荐(0) 编辑
摘要:参考资料: 1.https://blog.csdn.net/shengerjianku/article/details/79221886 阅读全文
posted @ 2019-08-19 15:38 酸奶加绿茶 阅读(366) 评论(0) 推荐(0) 编辑
摘要:1.什么是docker ocker 是一个开源的应用容器引擎,基于 Go语言 并遵从Apache2.0协议开源。 Docker 可以让开发者打包他们的应用以及依赖包到一个轻量级、可移植的容器中,然后发布到任何流行的 Linux 机器上,也可以实现虚拟化。 容器是完全使用沙箱机制,相互之间不会有任何接 阅读全文
posted @ 2019-07-16 16:29 酸奶加绿茶 阅读(1540) 评论(0) 推荐(0) 编辑
摘要:参考资料: https://blog.csdn.net/qq_39452428/article/details/80781403 阅读全文
posted @ 2019-07-02 17:49 酸奶加绿茶 阅读(108) 评论(0) 推荐(0) 编辑
摘要:1.下载http://rarcrack.sourceforge.net/ 2.安装依赖 gcc libxml2-devel libxslt-devel 3.使用rarcrack your_encrypted_archive.ext [--threads thread_num] [--type rar 阅读全文
posted @ 2019-06-28 11:47 酸奶加绿茶 阅读(2881) 评论(0) 推荐(0) 编辑
摘要:scp -P 16022 local_file user@host:/dir scp -P 16022 -r dir user@host:/dir 参考资料:https://www.cnblogs.com/lsdb/p/6879109.html 阅读全文
posted @ 2019-06-26 10:11 酸奶加绿茶 阅读(189) 评论(0) 推荐(0) 编辑
摘要:1.因为公司ip和mac地址是绑定的,所以要修改mac 阅读全文
posted @ 2019-06-12 18:30 酸奶加绿茶 阅读(147) 评论(0) 推荐(0) 编辑
摘要:1.服务器22端口和1521端口开通给指定IP [root@node2 sysconfig]# iptables -t filter -nL INPUT Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT all 阅读全文
posted @ 2019-06-11 15:34 酸奶加绿茶 阅读(12254) 评论(0) 推荐(0) 编辑
摘要:1.查看openssl版本 2.下载指定版本的openssl软件 在下面网址:https://www.openssl.org/source/下载 后面的版本号可以换 3.编译安装 4.配置 5.验证 阅读全文
posted @ 2019-06-10 20:39 酸奶加绿茶 阅读(4752) 评论(0) 推荐(0) 编辑
摘要:1、安装vsftpd yum install -y vsftpd 执行以下命令设置FTP服务开机自启动 systemctl enable vsftpd.service 执行以下命令启动FTP服务 systemctl start vsftpd.service 执行以下命令查看FTP服务端口 netst 阅读全文
posted @ 2019-06-10 19:01 酸奶加绿茶 阅读(2136) 评论(0) 推荐(0) 编辑
摘要:1.检查是否安装yum包 rpm -qa |grep yum 2. 删除自带的yum包 rpm -qa|grep yum|xargs rpm -e --nodeps 3. 下载yum包 4.解压yum包 5.替换yum源 7. 清理并重建缓存 yum clean all yum makecache 阅读全文
posted @ 2019-06-10 17:45 酸奶加绿茶 阅读(1634) 评论(0) 推荐(0) 编辑
摘要:一、基本介绍 nexus是一个强大的maven仓库管理工具,使用nexus可以方便的管理内部仓库,也就是私服,专门用于管理公司内部的jar包,可以将公司内部的jar包上传到nexus中。 优势: 1.一些无法从外部仓库下载的构件,例如内部的项目还能部署到私服上,以便供其他依赖项目使用。 2. 为了节 阅读全文
posted @ 2019-05-02 18:54 酸奶加绿茶 阅读(952) 评论(0) 推荐(0) 编辑

喜欢请打赏

扫描二维码打赏

了解更多

点击右上角即可分享
微信分享提示