海运的博客

LVM从VG中删除PV及删除未知PV

发布时间:December 21, 2012 // 分类:LVM // No Comments

LVM分区在查看PV时提示以下错误:

pvscan 
  Couldn't find device with uuid MBRrbL-wujm-Tfpe-h2qo-M6vo-9W1B-Im0zjo.
  PV /dev/xvda2       VG VolGroup00      lvm2 [7.88 GB / 0    free]
  PV /dev/xvda3       VG VolGroup00      lvm2 [1.97 GB / 0    free]
  PV unknown device   VG VolGroup00      lvm2 [9.97 GB / 9.97 GB free]

VG中去除PV unknown device:

vgreduce --removemissing /dev/VolGroup00 #去除未知或已丢失的VG
  Couldn't find device with uuid MBRrbL-wujm-Tfpe-h2qo-M6vo-9W1B-Im0zjo.
  Wrote out consistent volume group VolGroup00

从VG中去除特定PV:

vgreduce VolGroup00  /dev/xvdb1

删除PV:

pvremove  /dev/xvdb1

此内容被密码保护

发布时间:December 20, 2012 // 分类:VPN // No Comments

请输入密码访问

Kloxo下Apache报错NameVirtualHost has no VirtualHosts解决

发布时间:December 18, 2012 // 分类:控制面板 // No Comments

Kloxo面板重启Apache时提示以下错误:

[Tue Dec 18 22:07:51 2012] [warn] NameVirtualHost 8.8.8.8:80 has no VirtualHosts
[Tue Dec 18 22:07:51 2012] [warn] NameVirtualHost 8.8.8.8:443 has no VirtualHosts

原因是在以下配置文件内重复设置NameVirtualHost,注释一个即可。

/etc/httpd/conf/kloxo/init.conf
/etc/httpd/conf/kloxo/virtualhost.conf

Vim插件管理器Vundle安装使用

发布时间:December 16, 2012 // 分类:Vim // No Comments

Linux各发行版上有各种软件包管理器,在强大的Vim上也有包管理插件,极大的方便系统使用与管理。
Vundle基于Git获取Github上的各种Vim插件,可进行在线查找、安装、更新Vim插件,每个插件以单独目录存放,方便管理。
Vundle安装:

git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

Windows下安装:

cd %USERPROFILE%
git clone https://github.com/gmarik/vundle.git .vim/bundle/vundle

Vundle配置:

set nocompatible "与vi不一致
filetype off
set rtp+=~/.vim/bundle/vundle/ "载入特定目录插件
"set rtp+=$HOME/.vim/bundle/vundle/ "Windows下
call vundle#rc()
"plugin 
"vimscripts账号下的项目直接填写名称即可
Bundle 'snipMate'
"其它需填写用户/资源名称
Bundle 'gmarik/vundle'
"非github上资源
Bundle 'git://git.wincent.com/command-t.git'
"indent
Bundle 'php.vim-html-enhanced'
"color
Bundle 'Lucius'
filetype plugin indent on  

Vundle命令:

:BundleList          #已安装列表
:BundleInstall(!)    #安装、升级
:BundleSearch(!)     #搜索
:BundleClean(!)      #删除

也可在Vundle窗口下管理插件,打开Vim执行:

:Bundles #GitHub上插件列表

Vim插件管理器Vundle.png

Vim将gui2term.py配色转换为终端配色

发布时间:December 16, 2012 // 分类:Vim // No Comments

Vim下的主题配色大部分都是为GUI下设置的,在终端下配置为相同配色相差极大,可以使用gui2term.py将GUI本色转换为终端配色。
首先终端需开启256色,VIM配置开启256色:

set t_Co=256 

最新版gui2term.py需pytho3.0环境支持:

apt-get install python3

使用gui2term.py转换配色示例:

wget -O gui2term.py http://www.vim.org/scripts/download_script.php?src_id=16205
cp /usr/share/vim/vim72/rgb.txt ./
python3 gui2term.py gui.vim ter.vim
#个别配色如有终端配色请删除term部分后再转换

我转换的一些经典配色:https://github.com/foxconndmd/vim-colors-xterm
vim-xterm-colors:https://github.com/KevinGoodsell/vim-xterm-colors
vimcolorschemetest:http://code.google.com/p/vimcolorschemetest/

分类
最新文章
最近回复
  • opnfense: 谢谢博主!!!解决问题了!!!我之前一直以为内置的odhcp6就是唯一管理ipv6的方式
  • liyk: 这个方法获取的IPv6大概20分钟之后就会失效,默认路由先消失,然后Global IPV6再消失
  • 海运: 不好意思,没有。
  • zongboa: 您好,請問一下有immortalwrt設定guest Wi-Fi的GUI教學嗎?感謝您。
  • 海运: 恩山有很多。
  • swsend: 大佬可以分享一下固件吗,谢谢。
  • Jimmy: 方法一 nghtp3步骤需要改成如下才能编译成功: git clone https://git...
  • 海运: 地址格式和udpxy一样,udpxy和msd_lite能用这个就能用。
  • 1: 怎么用 编译后的程序在家里路由器内任意一台设备上运行就可以吗?比如笔记本电脑 m参数是笔记本的...
  • 孤狼: ups_status_set: seems that UPS [BK650M2-CH] is ...
归档