
ubuntu
zzjjzzgggg
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
grub2修复方法
1. 双系统重装windows造成grub2被改写的修复方法一 grub4dos在Windows启动项上加上grub4dos启动,重启选择进入grub,在命令行下输入(/boot单独分区的去掉 /boot)代码:grub>find --set-root /boot/grub/core.imggrub>kernel /boot/grub/core.imggrub&...原创 2011-06-18 10:30:23 · 693 阅读 · 0 评论 -
Failed to exec method /usr/lib/apt/methods/
Failed to exec method /usr/lib/apt/methods/E: Method has died unexpectedly!E: Sub-process returned an error code (100)E: Method /usr/lib/apt/methods/ did not start correctlyTo fix it:$...原创 2013-11-17 21:44:21 · 11199 阅读 · 0 评论 -
ubuntu clean package configs
dpkg -l | awk '/^rc/{ print $2}' | sudo xargs dpkg --purge原创 2013-02-18 13:18:52 · 1777 阅读 · 0 评论 -
avant
https://bugs.launchpad.net/awn/+bug/990774原创 2013-12-19 10:23:04 · 195 阅读 · 0 评论 -
Disable Ubuntu Overlay Scrollbars in Ubuntu 12.04
open terminal and execute gsettings set org.gnome.desktop.interface ubuntu-overlay-scrollbars false then it is done.原创 2013-02-21 18:49:34 · 1244 阅读 · 0 评论 -
Why does my Ubuntu brightness control skip steps?
http://askubuntu.com/questions/173921/why-does-my-thinkpad-brightness-control-skip-steps原创 2014-01-09 13:36:13 · 1590 阅读 · 0 评论 -
matplotlib pyqt4
http://stackoverflow.com/questions/7534453/matplotlib-does-not-show-my-drawings-although-i-call-pyplot-showhttp://stackoverflow.com/questions/7942887/how-to-configure-pyqt4-for-python-3-in-ubuntu...原创 2013-02-26 20:11:53 · 6898 阅读 · 0 评论 -
Byobu notes
Ctrl+ac == create new windowCtrl+ap == previous windowCtrl+an == next windowCtrl+aa == toggle between two windowsCtrl+a[number] == switch to window [number]Ctrl+ad == detach from ses...原创 2014-02-23 21:04:23 · 406 阅读 · 0 评论 -
subprocess installed post-installation script returned error exit status 1
如果 apt-get 出現 “subprocess installed post-installation script returned error exit status 1″ 的錯誤dpkg: error processing util-linux (–configure): subprocess installed post-installation script return...原创 2013-10-23 22:05:50 · 692 阅读 · 0 评论 -
Error: /invalidfileaccess in /findfont
ghostscript 使用外部字体时,需要将字体名称以及文件路径添加到ghostscriptscript 到Fontmap中去。字体文件必须放在ghostscript规定到search path 中允许到目录中去。放到其他目录就会产生这个错误。...原创 2014-04-20 15:46:06 · 6600 阅读 · 0 评论 -
Install Oracle JDK
http://www.enqlu.com/2014/03/how-to-install-oracle-java-78-jdk-and.html原创 2014-04-20 21:15:22 · 1124 阅读 · 0 评论 -
取消apache 自动启动
# 移除apache2自启动脚本,# 参数-f是为了解决 update-rc.d: /etc/init.d/apache2 exists during rc.d purge的问题sudo update-rc.d -f apache2 remove # 同时也可以方便的恢复自启动脚本sudo update-rc.d apache2 ...原创 2012-04-11 10:55:11 · 1075 阅读 · 0 评论 -
ubuntu power saving
ubuntu 12.04 LTS 已经有很好的电源节能管理,无需再使用其他节能工具。https://wiki.ubuntu.com/Kernel/PowerManagement/原创 2013-04-06 14:29:21 · 607 阅读 · 0 评论 -
Linux notes
Ctrl+C 终止并退出前台命令的执行,回到SHELLCtrl+Z 暂停前台命令的执行,将该进程放入后台,回到SHELL jobs 查看当前在后台执行的命令,可查看命令进程号码& 运行命令时,在命令末尾加上&可让命令在后台执行fg N 将命令进程号码为N的命令进程放到前台执行,同%Nbg N 将命令进程号码为N的命令进程放到后...原创 2012-03-14 09:47:17 · 159 阅读 · 0 评论 -
Ubuntu 环境变量
1. 全局/etc/profile 2. 用户.bashrc PATH="$PATH:XXXXXXXX"export PATH原创 2011-07-12 19:13:37 · 424 阅读 · 0 评论 -
neatex install
sudo apt-get install python-software-properties && sudo add-apt-repository ppa:freenx-teamsudo apt-get updatesudo apt-get install neatx-server原创 2011-07-19 22:29:17 · 401 阅读 · 0 评论 -
X2go-server安装
edit sources.lstgksudo gedit /etc/apt/sources.list add sourcedeb http://x2go.obviously-nice.de/deb/ lenny main save and close. Install GPG keysudo gpg --keyserver wwwkeys.us.pgp.ne...原创 2011-10-21 09:51:37 · 6765 阅读 · 1 评论 -
lenovo V460 win7 & ubuntu 11.10
0、将iso文件,以及iso文件里的vmlinuz和initrd.lz放到C盘根目录下;1、将grub4dos解压,复制其中的grldr和grldr.mbr两个文件到C盘根目录;2、运行cmd,打开命令提示符,在命令提示符下依次键入一下命令: bcdedit /create /d “GRUB4DOS” /application bootsector 这个命令会产...原创 2011-03-29 01:10:13 · 151 阅读 · 0 评论 -
版本升级
sudo apt-get updatesudo apt-get upgradesudo apt-get install update-manager-coresudo vim /etc/update-manager/release-upgrades (修改Prompt=normal或者Prompt=lts)sudo do-release-upgrade -d ...原创 2011-12-23 10:32:30 · 119 阅读 · 0 评论 -
x2go 连接ubuntu 11.10的设置
删除unitysudo apt-get -y --auto-remove purge unitysudo apt-get -y --auto-remove purge unity-lens-*sudo apt-get -y --auto-remove purge unity-commonsudo apt-get -y --auto-remove purge unity-serv...原创 2012-01-16 18:23:44 · 9821 阅读 · 0 评论 -
U盘制作ubuntu安装盘
以ubuntu 12.04为例 用bootice中的“分区管理”将U盘分为一个分区HDD+, FAT32;将Grub4dos中的grldr和grldr.mbr、iso文件、iso文件中的initrd.lz(or initrd.gz)和vmlinuz都放到U盘根目录下;(对于server版,要从官网下载那两个文件)编辑menu.lst文件,内容如下# for desk...原创 2011-12-01 19:00:27 · 186 阅读 · 0 评论 -
Lenovo V460+Ubuntu 11.10 无线网问题
无线网卡不能启用是因为与acer_wmi有冲突,卸载掉即可:modprobe -r acer_wmi 或者把它加到包黑名单里:将"blacklist acer_wmi"添加到文件/etc/modprobe.d/blacklist.conf中...原创 2011-12-01 22:14:35 · 143 阅读 · 0 评论 -
Ubuntu挂载硬盘时的权限设置
sudo mount /dev/sdb1 /data -o uid=1000,gid=1000,dmask=022,fmask=133http://forum.ubuntu.org.cn/viewtopic.php?t=6015原创 2012-02-09 21:50:56 · 626 阅读 · 0 评论 -
Getting X2GO Alt+Tab to work
http://www.terheyden.com/blog/?p=202 x2go is an awesome remote desktop solution for windows->linux. However, by default, Alt-Tab doesn’t work! Luckily it’s easy to fix. Go into your x2go...原创 2012-06-23 09:14:54 · 15039 阅读 · 0 评论 -
Ubuntu 14.04
Cairo-Dock can replace AWNReboot problem can be solved by remove bumpbee*原创 2014-04-21 21:29:07 · 203 阅读 · 0 评论