shell
jis117
这个作者很懒,什么都没留下…
展开
-
设置linux共享
设置linux共享修改/etc/samba/smb.conf增加内容[code="shell"] [jis] comment = jis path = /home/jis read only = no inherit acls = yes broweseable = yes quest ok = yes ...原创 2013-11-22 21:18:00 · 90 阅读 · 0 评论 -
Windows 休眠
RUNDLL32.EXE PowrProf.dll,SetSuspendState保存为Hibernate.bat原创 2014-05-12 09:04:21 · 169 阅读 · 0 评论 -
linux 常用操作
[code="shell"]-- 查看操作系统版本lsb_release -a-- 查看内核信息uname -a[/code][code="url"]http://www.ccidnet.com/images/tech/linux/zhuanti/mingling/index.htm[/code][code="shell"]-- 删除rm -rf...原创 2014-06-04 15:13:04 · 89 阅读 · 0 评论 -
linux, java
[code=".profile"]http://hi.baidu.com/hougbin/blog/item/4a9c991b6a17e3ddac6e750a.htmllinux下JAVA安装,及Java环境变量配置2009-06-10 10:12在/etc/profile文件改权限.然后在终端输入sudo gedit /etc/profile. 或者用root用户直接编辑....原创 2014-06-17 10:10:14 · 114 阅读 · 0 评论 -
Linux 端口操作
[code="shell"]通过pid查看端口:netstat -antup |grep 2519[/code][code="shell"]查看那个进程占用了xxx端口lsof -i:xxx查看进程号为xxx的进程在哪里ps -ef|grep xxx[/code][code="java"]Linux查询端口被占用的程序netstat -tunlp | gre...原创 2013-10-09 20:13:39 · 108 阅读 · 0 评论 -
kill 8080被占用的进程
[code="shell"]-- 这个命令输出的最后一列表示占用8080端口的进程号是多少,假设为1234F:\>netstat -ano | findstr 8080-- 查看是哪个进程F:\>tasklist /fi "pid eq 1876-- kill掉这个进程F:\>taskkill /F /PID 1234[/code]...原创 2014-11-15 16:38:32 · 223 阅读 · 0 评论 -
PowerShell
[code="java"]echo off copy \\192.168.143.211\juanpi\123.ps1 c:\123.ps1powershell set-executionpolicy remotesigned -forcepowershell c:\123.ps1@pausedel c:\123.ps1[/code][code="java"...原创 2016-01-20 16:01:20 · 127 阅读 · 0 评论