随笔分类 -  linux

上一页 1 ··· 3 4 5 6 7 8 下一页
摘要:一.启动网卡 ubuntu server 安装后,ifconfig 发现只有一个lo 和一个p1p1 网卡, 先查看服务器网卡:ifconfig -a ,发现有lo ,p1p1,p2p1,p3p1,p4p1 要启动其他网卡,可以通过 ifconfig p2p1 up #启动p2p1网卡 二.配置网卡 阅读全文
posted @ 2018-10-17 12:30 anobscureretreat 阅读(858) 评论(0) 推荐(0) 编辑
摘要:统计文件个数 ls -l |grep "^-"|wc -l 统计目录的个数 ls -l|grep "^d"|wc -l 统计文件个数(包括子文件夹) ls -lr |grep "^-"|wc -l 统计目录的个数(包括子文件夹) ls -lr|grep "^d"|wc -l 统计目录的所有js文件 ls -lr /home/han|grep js|wc -l 或 ls -l ... 阅读全文
posted @ 2018-10-17 10:15 anobscureretreat 阅读(181) 评论(0) 推荐(0) 编辑
摘要:1、lsof -i:端口号 2、netstat -tunlp|grep 端口号 3. netstat –anp | grep 8080 netstat -anlp | grep 80 都可以查看指定端口被哪个进程占用的情况 所有端口: netstat -an 查看硬盘剩余空间 #df -h #df -H 查看目录占用空间 #du -hs 目录名 阅读全文
posted @ 2018-10-17 10:14 anobscureretreat 阅读(128) 评论(0) 推荐(0) 编辑
摘要:加入以下内容 阅读全文
posted @ 2018-10-17 10:09 anobscureretreat 阅读(207) 评论(0) 推荐(0) 编辑
摘要:原因 在sources.list文件中加入了非ubuntu官方源,所以认为加入源是不可信任的。 解决方法导入该源公钥。E084DAB9为PUBKEY后八位 gpg --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 gpg --export - 阅读全文
posted @ 2018-10-15 19:23 anobscureretreat 阅读(601) 评论(0) 推荐(0) 编辑
摘要:1.备份原来的源文件 2.修改源 保存! sudo apt-get update 阅读全文
posted @ 2018-10-15 19:10 anobscureretreat 阅读(402) 评论(0) 推荐(0) 编辑
摘要:一.cron相关命令 #重载cron sudo service cron reload #查看cron状态 service cron status #查看cron pid pidof cron #获取cron进程 pgrep cron #启动cron服务 service cron start #重启 阅读全文
posted @ 2018-10-13 00:42 anobscureretreat 阅读(1611) 评论(0) 推荐(0) 编辑
摘要:如何在Ubuntu上启动一个定时任务,使得可以定时删除机器上的日志 首先, #查看cron状态 service cron status 如果提示没有安装 #安装cron服务 apt-get install cron 如果提示正在运行 #编辑当前用户的计划任务文件crontab -e 弹出编辑界面,如 阅读全文
posted @ 2018-10-12 21:53 anobscureretreat 阅读(492) 评论(0) 推荐(0) 编辑
摘要:ssh是一种安全协议,主要用于给远程登录会话数据进行加密,保证数据传输的安全,我们可以很方便的用ssh链接工具连接远程服务器进行相关操作,但是在享受这种方便的同时我们需要进行一些配置。 首先我们需要在远程主机上安装SSH服务,执行sudo apt-get install openssh-server 阅读全文
posted @ 2018-10-12 15:40 anobscureretreat 阅读(1345) 评论(0) 推荐(0) 编辑
摘要:#输入内容 按照前几行格式,输入目标主机IP以及hostname source ~/.bashrc 阅读全文
posted @ 2018-10-09 13:33 anobscureretreat 阅读(3049) 评论(0) 推荐(0) 编辑
摘要:1.列出所有磁盘 2.最后一段信息显示的为u盘 3.挂载u盘 4.进入u盘 5.卸载u盘 阅读全文
posted @ 2018-09-28 21:21 anobscureretreat 阅读(2268) 评论(0) 推荐(0) 编辑
摘要:写出 shell 脚本中所有循环语法 for 循环 : for i in $(ls);do echo item:$i done while 循环 : #!/bin/bash COUNTER=0 while [ $COUNTER -lt 10 ]; do echo The counter is $COUNTER let COUNTER=COUNTER+1 done until 循... 阅读全文
posted @ 2018-09-21 18:17 anobscureretreat 阅读(202) 评论(0) 推荐(0) 编辑
摘要:sync 将数据由内存同步到硬盘中。 shutdown 关机指令,你可以man shutdown 来看一下帮助文档。例如你可以运行如下命令关机: shutdown –h 10 ‘This server will shutdown after 10 mins’ 这个命令告诉大家,计算机将在10分钟后关机,并且会显示在登陆用户的当前屏幕中。 Shutdown –h now 立马关机 Shutd... 阅读全文
posted @ 2018-09-18 20:20 anobscureretreat 阅读(150) 评论(0) 推荐(0) 编辑
摘要:方法1.将脚本放入/etc/rc.local文件中。 方法2.添加一个ubuntu的开机启动服务 分为以下几个步骤: 1)新建一个脚本文件 new_services.sh 2)将脚本放置到启动目录下 3)设置权限 4)将脚本添加到启动脚本 这里90表明一个优先级,越高表示执行的越晚。 移除ubunt 阅读全文
posted @ 2018-09-18 19:36 anobscureretreat 阅读(289) 评论(0) 推荐(0) 编辑
摘要:官网:http://maven.apache.org/download.cgi 创建manve目录:sudo mkdir /opt/maven 解压到/opt/maven目录下:sudo tar zxvf apache-maven-3.5.0-bin.tar.gz -C /opt/maven 配置m 阅读全文
posted @ 2018-09-12 16:15 anobscureretreat 阅读(453) 评论(0) 推荐(0) 编辑
摘要:sudo apt-get update sudo apt-get install tomcat7 启动:sudo service tomcat7 start 访问http://127.0.0.1:8080/ 关闭:sudo service tomcat7 stop 重启:sudo service t 阅读全文
posted @ 2018-09-12 15:25 anobscureretreat 阅读(417) 评论(0) 推荐(0) 编辑
摘要:eth0,eth1,eth2,代表网卡一,网卡二,网卡三 lo代表127.0.0.1,即localhost hw 代表hardware 硬件意思 ether 代表ethernet 以太网的意思 ifconfig配置网卡 配置网卡的IP地址 ifconfig eth0 192.168.0.1 netm 阅读全文
posted @ 2018-09-07 19:47 anobscureretreat 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-09-07 18:26 anobscureretreat 阅读(218) 评论(0) 推荐(0) 编辑
摘要:开机,不停按delete,进入bios 进入boot,选择USB启动 重新开机,进入安装向导,下一步即可 阅读全文
posted @ 2018-09-07 18:24 anobscureretreat 阅读(1521) 评论(0) 推荐(0) 编辑
摘要:设置Ubuntu 14.04右键终端的方法如下: 首先要安装一个包,即可在右键里面添加一个“打开终端”的菜单。 sudo apt-get install nautilus-open-terminal 注销Ubuntu系统或者重启即可. 阅读全文
posted @ 2018-09-07 17:47 anobscureretreat 阅读(382) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 下一页