当前位置: 操作系统/服务器>windows
本页文章导读:
▪windows共享打印机机器定时清算连接会话 windows共享打印机机器定时清理连接会话
“网络打印机”是把一台普通打印机连接到一台普通PC上并作共享,然后大家连接到这台PC上打印。
在使用过程中可以会出现一个问题:部分同事无.........
▪ 当tomcat登记为windows服务时候,怎样设置远程debug 当tomcat注册为windows服务时候,怎样设置远程debug
在注册表java options编辑框里面的最顶端加入:-Xdebug
-Xrunjdwp:transport=dt_socket,address=9999,server=y,suspend=n如果之前设置多profile等配置,要移除。.........
▪ 小弟我的windows下vim的配置 我的windows下vim的配置
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Vim: windows config(c:\Program Files\Vim\_vimrc)""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""".........
[1]windows共享打印机机器定时清算连接会话
来源: 互联网 发布时间: 2014-02-18
windows共享打印机机器定时清理连接会话
“网络打印机”是把一台普通打印机连接到一台普通PC上并作共享,然后大家连接到这台PC上打印。
在使用过程中可以会出现一个问题:部分同事无法打印,重新添加打印机提示无法访问。查看计算机管理-共享文件夹-会话后发现里面已经有10个会话,这是因为XP Pro和2K Pro一样都将网络并发连接数限制在10,并发数满了以后新用户就无法在连接到这台计算机打印。
在CMD下使用net config server /autodisconnect:2将空闲自动断开时间改为2分钟也没用,会话还是会满掉,空闲时间几个小时也不会自动断。 --测试后发现该方法无效
也可以用下面方法“清除连接数”解决:
1.建立一个批处理文件clear.bat,内容为net session /delete /y,作用是清除网络会话,/y表示无需确认删除。
2.加入到任务计划中,开始-附件-系统工具-任务计划,添加计划任务-下一步-浏览,选中clear.bat-每天-设定启动时间-输入用户名密码-打开任务高级属性,计划-高级,勾选重复任务,设定重复时间间隔(30分钟)以及持续时间(24小时)。搞定。以后每隔15分钟就会清一次会话,10个并发限制一般就不会用完。
[2] 当tomcat登记为windows服务时候,怎样设置远程debug
来源: 互联网 发布时间: 2014-02-18
当tomcat注册为windows服务时候,怎样设置远程debug
在注册表java options编辑框里面的最顶端加入:
如果之前设置多profile等配置,要移除。
例如如果之前设置过yourKit:
如果启动不成功注意查看日志,如果是下面的日志:
则是端口被占用,可以多试几个端口
在注册表java options编辑框里面的最顶端加入:
-Xdebug -Xrunjdwp:transport=dt_socket,address=9999,server=y,suspend=n
如果之前设置多profile等配置,要移除。
例如如果之前设置过yourKit:
-agentpath:C:/YourKit/win32/yjpagent.dll要移除掉,否则跑出:
JDWP unable to get necessary JVMTI capabilities
如果启动不成功注意查看日志,如果是下面的日志:
2012-05-28 18:49:34 Commons Daemon procrun stderr initialized ERROR: transport error 202: bind failed: Permission denied ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510) JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:690]
则是端口被占用,可以多试几个端口
[3] 小弟我的windows下vim的配置
来源: 互联网 发布时间: 2014-02-18
我的windows下vim的配置
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Vim: windows config(c:\Program Files\Vim\_vimrc)
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Use Vim defaults (much better!)
" This should the priority setting, otherwise problems can appear
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set nocompatible
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 编码设置
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set fileencodings=utf-8,gb2312,gbk,gb18030
set termencoding=utf-8
"set fileformats=unix
set fileformat=unix
set encoding=prc
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 字体大小设置
" h 是字体大小
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set guifont=Consolas:h14
" 如果字体间有空格的话,则使用下划线表示空格,例如下面
"set guifont=Courier_New:h11
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set diffexpr=MyDiff()
function MyDiff()
let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
let eq = ''
if $VIMRUNTIME =~ ' '
if &sh =~ '\<cmd'
let cmd = '""' . $VIMRUNTIME . '\diff"'
let eq = '"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd = $VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction
set number " 显示行号
set tabstop=4 " 设定tab长度为4
set shiftwidth=4 " 缩进的空格数
set expandtab " 是否在缩进和遇到Tab键时使用空格代替;
" 使用noexpandtab取消设置
set autoindent " 自动缩进
set smartindent
set cindent
set showmatch " 显示括号配对情况
set paste " 支持外部复制(好像不管用)
set clipboard+=unnamed " 与windows共享剪贴板
set history=50 " keep 50 lines of command history
set scrolloff=3 " 光标移动到buffer的顶部和底部时保持3行距离
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" color set
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
colorscheme desert " windows下深色主题
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" windows下gui去掉显示,如果需要显示,只需要将-改为+即可
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set guioptions-=T " windows下隐藏工具栏
set guioptions-=r " 把gui右边的滑动条去掉
set guioptions-=L " 把gui左边的滑动条去掉
set guioptions-=m " 把gui的菜单栏去掉
set shortmess=atI " 启动的时候不显示援助索马里儿童的提示(是I而不是L)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" windows下启动vim最大化
autocmd GUIEnter * simalt ~x
set gcr=a:block-blinkon0 " windows下去掉光标闪动
set nobackup " 关闭自动备份功能,backup自动备份
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" windows下python配置
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 自动补全:
" 配置说明
" 1. 下载pydiction, pydiction包括了complete-dict和python_pydiction.vim
" 2. cp complete-dict to C:\Program Files\Vim\vimfiles\ftplugin\pydiction
" cp python_pydiction to C:\Program Files\Vim\vimfiles\ftplugin
" 3. modify _vimrc
" add:
" filetype plugin on
" let g:pydiction_location='C:\Program Files\Vim\vimfiles\ftplugin\pydiction\complete-dict'
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 快捷键说明
" 需要补全的时候,按住tab键,便可以看到补全的内容
" 然后通过ctrl-n, ctrl-p可以上下选择
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"filetype plugin on
"let g:pydiction_location='C:\Program Files\Vim\vimfiles\ftplugin\pydiction\complete-dict'
" 自动编译python,
" python需要加入path路径,以后只要编写python的时候,按住f12,便可直接编译
" %代表的就是当前的文件
"map <F12> :!python.exe %
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Tag list(ctags)
" 配置说明:
" 1. 下载ctags, 解压缩,会发现里面有一个ctags.exe
" 1. cp ctags.exe to c:\windows\system32\, 这之后,cmd下便有了ctags命令
" 3. 下载taglist, 解压缩, 里面有doc/taglist.txt和plugin/taglist.vim
" 4. cp taglist.vim to C:\Program Files\Vim\vimfiles\plugin\
" cp taglist.txt to C:\Program Files\Vim\vimfiles\doc\
" 5. 使用:
" 同linux类似。
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"let Tlist_Show_One_file=1 " 不同时显示多个的tag,只显示当前文件的
"let Tlist_Exit_OnlyWindow=1 " 如果taglist窗口是最后一个窗口,则退出vim
"nmap tl :TlistToggle
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" winmanager config
" 配置说明:
" 1. 下载winmanager, 解压缩
" 2. 操作同taglist类似
" let g:winManagerWindowLayout='TagList|FileExplorer' 显示顺序,TagList在上,
" FileExplorer在下
" let g:winManagerWidth=30 30像素的宽度
" nmap wm :WMToggle 自定义快捷键
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"let g:winManagerWindowLayout='TagList|FileExplorer'
"let g:winManagerWidth=30
"nmap wm :WMToggle
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Vim: windows config(c:\Program Files\Vim\_vimrc)
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Use Vim defaults (much better!)
" This should the priority setting, otherwise problems can appear
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set nocompatible
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 编码设置
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set fileencodings=utf-8,gb2312,gbk,gb18030
set termencoding=utf-8
"set fileformats=unix
set fileformat=unix
set encoding=prc
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 字体大小设置
" h 是字体大小
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set guifont=Consolas:h14
" 如果字体间有空格的话,则使用下划线表示空格,例如下面
"set guifont=Courier_New:h11
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set diffexpr=MyDiff()
function MyDiff()
let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
let eq = ''
if $VIMRUNTIME =~ ' '
if &sh =~ '\<cmd'
let cmd = '""' . $VIMRUNTIME . '\diff"'
let eq = '"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd = $VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction
set number " 显示行号
set tabstop=4 " 设定tab长度为4
set shiftwidth=4 " 缩进的空格数
set expandtab " 是否在缩进和遇到Tab键时使用空格代替;
" 使用noexpandtab取消设置
set autoindent " 自动缩进
set smartindent
set cindent
set showmatch " 显示括号配对情况
set paste " 支持外部复制(好像不管用)
set clipboard+=unnamed " 与windows共享剪贴板
set history=50 " keep 50 lines of command history
set scrolloff=3 " 光标移动到buffer的顶部和底部时保持3行距离
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" color set
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
colorscheme desert " windows下深色主题
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" windows下gui去掉显示,如果需要显示,只需要将-改为+即可
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set guioptions-=T " windows下隐藏工具栏
set guioptions-=r " 把gui右边的滑动条去掉
set guioptions-=L " 把gui左边的滑动条去掉
set guioptions-=m " 把gui的菜单栏去掉
set shortmess=atI " 启动的时候不显示援助索马里儿童的提示(是I而不是L)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" windows下启动vim最大化
autocmd GUIEnter * simalt ~x
set gcr=a:block-blinkon0 " windows下去掉光标闪动
set nobackup " 关闭自动备份功能,backup自动备份
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" windows下python配置
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 自动补全:
" 配置说明
" 1. 下载pydiction, pydiction包括了complete-dict和python_pydiction.vim
" 2. cp complete-dict to C:\Program Files\Vim\vimfiles\ftplugin\pydiction
" cp python_pydiction to C:\Program Files\Vim\vimfiles\ftplugin
" 3. modify _vimrc
" add:
" filetype plugin on
" let g:pydiction_location='C:\Program Files\Vim\vimfiles\ftplugin\pydiction\complete-dict'
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 快捷键说明
" 需要补全的时候,按住tab键,便可以看到补全的内容
" 然后通过ctrl-n, ctrl-p可以上下选择
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"filetype plugin on
"let g:pydiction_location='C:\Program Files\Vim\vimfiles\ftplugin\pydiction\complete-dict'
" 自动编译python,
" python需要加入path路径,以后只要编写python的时候,按住f12,便可直接编译
" %代表的就是当前的文件
"map <F12> :!python.exe %
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Tag list(ctags)
" 配置说明:
" 1. 下载ctags, 解压缩,会发现里面有一个ctags.exe
" 1. cp ctags.exe to c:\windows\system32\, 这之后,cmd下便有了ctags命令
" 3. 下载taglist, 解压缩, 里面有doc/taglist.txt和plugin/taglist.vim
" 4. cp taglist.vim to C:\Program Files\Vim\vimfiles\plugin\
" cp taglist.txt to C:\Program Files\Vim\vimfiles\doc\
" 5. 使用:
" 同linux类似。
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"let Tlist_Show_One_file=1 " 不同时显示多个的tag,只显示当前文件的
"let Tlist_Exit_OnlyWindow=1 " 如果taglist窗口是最后一个窗口,则退出vim
"nmap tl :TlistToggle
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" winmanager config
" 配置说明:
" 1. 下载winmanager, 解压缩
" 2. 操作同taglist类似
" let g:winManagerWindowLayout='TagList|FileExplorer' 显示顺序,TagList在上,
" FileExplorer在下
" let g:winManagerWidth=30 30像素的宽度
" nmap wm :WMToggle 自定义快捷键
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"let g:winManagerWindowLayout='TagList|FileExplorer'
"let g:winManagerWidth=30
"nmap wm :WMToggle
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
最新技术文章: