
Ubuntu
allenpettle
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu9.04 crash issue - Kinit: No resume image
最近安装了Ubuntu9.04, 用一段时间后就会无故假死, 重新boot就无法进入图形界面,造成假死的原因可能是PC显卡 错误提示: Kinit: No resume image, doing normal boot... 解决办法: $ sudo aptitude install update-usplash-theme usplash-theme-ubunt...2010-02-22 16:39:29 · 132 阅读 · 0 评论 -
Ubuntu-Studio 11.10下载
http://cdimage.ubuntu.com/ubuntustudio/releases/11.10/release/ Select an image Alternate install DVD The alternate install DVD allows you to perform certain specialist installations of Ubuntu-S...原创 2011-11-15 17:46:58 · 111 阅读 · 0 评论 -
How to develpe Object-C on Ubuntu
1) Install the GNU Objective-C compiler: sudo apt-get install gobjc 2) Write a quick bit of test code: // hello.m #import <objc/Object.h> #import <stdio.h> @interface...原创 2011-11-21 17:08:10 · 108 阅读 · 0 评论 -
unix2dos dos2unix
sudo aptitude install tofrodos 运行这两行 ln -s /usr/bin/fromdos /usr/bin/dos2unix ln -s /usr/bin/todos /usr/bin/unix2dos 或者加入脚本原创 2013-03-04 20:12:44 · 171 阅读 · 0 评论 -
Android source sync问题汇总(since 2012)
1. [repo init] fetch address issue: change to fetch="git://Android.git.linaro.org/" 2. something like "remote end hung up unexpectedly" go to the folder where you made “repo init” some days ago ...原创 2012-11-04 16:00:12 · 260 阅读 · 0 评论 -
JDK6 installed in Ubuntu
按照网上的方法apt-get并不成功,我这里采用的方法是手工安装,步骤如下: 1. java.sun.com下载jdk-6u37-linux-i586.bin 2. sudo chmod u+x /home/allen/jdk-6u37-linux-i586.bin 3. JDK配置,vim ~/.bashrc [code="java"] export JAVA_HOME=/...2012-11-10 15:23:11 · 176 阅读 · 0 评论 -
error: gnutls_handshake() falied when you sync chip code in ubuntu
gnutls package is broken, workaround is compile git with openssl. [code="cmd"] sudo apt-get install build-essential fakeroot dpkg-dev mkdir ~/git-openssl cd ~/git-openssl sudo apt-get source gi...原创 2013-11-30 19:47:20 · 209 阅读 · 0 评论 -
Get Rid Of “System Program Problem Detected” error in Ubuntu
[size=large][b]Remove old crash-reports - recommended[/b][/size] Remove all old crash-reports that might exist in the crash-report directory: [code="cmd"]sudo rm /var/crash/*[/code] After a reboo...原创 2013-12-08 22:59:19 · 161 阅读 · 0 评论 -
Remove Ubuntu One
To start, we need to make sure that Ubuntu One isn’t running. Open the System Monitor, in System > Administration > System Monitor. In the Processes tab, look for anything that starts with “ubuntone”...原创 2013-12-08 23:08:32 · 155 阅读 · 0 评论 -
Disable Amazon hint in Ubuntu search
Getting bored with Amazon association when you search in Ubuntu dash, just follow the below tips. [size=small][b]1. Remove unity shopping packages[/b][/size] [code="cmd"] sudo apt-get remove unity...2013-12-22 18:07:32 · 173 阅读 · 0 评论 -
Ubuntu10.10上怎样安装JDK5
sudo apt-get install sun-java5-jdk 提示无法找到sun-java5-jdk 解决办法: sudo add-apt-repository “deb http://us.archive.ubuntu.com/ubuntu/ jaunty multiverse” sudo add-apt-repository “deb http://us.archiv...原创 2011-01-04 11:11:16 · 129 阅读 · 0 评论 -
Ubuntu10.04安装后丢失windows启动项解决方法
先安装的windows,然后安装ubuntu后重启没有了启动选项菜单, 解决办法: 进入ubuntu, open terminal and input "sudo update-grub"原创 2010-06-27 16:45:55 · 237 阅读 · 0 评论 -
Hello LUA
LUA, who are you? Lua是一种轻量级的编程语言,其设计目的在于扩展应用程序。 Lua的实现包含一个很小的库,这个库由一些在所有平台一致的ansi c函数组成。这样实现的目的在于简单、高效、轻便,并能运行于兼容性有限的微小设备上。实现这些目标后得到的就是一个资源占用很小的高速语言引擎,适于系统嵌入。 Lua正用于Tecgraf, PUC-Rio, University o...2010-12-17 14:08:15 · 165 阅读 · 0 评论 -
基于OA网络的Ubuntu9.04工作环境配置
在外网环境下Ubuntu应该很好配置,但是在OA网络的话,需要设置一些比较繁琐的步骤。 这里我简单写了几个步骤: 首先是跟上网无关的,那就是设置中文输入环境: 1.在CDROM中插入Ubuntu CD,在Ubuntu面板上选择“System->Administration->Software Sources”,然后选中“Installable from ...原创 2010-02-22 20:46:59 · 246 阅读 · 0 评论 -
我的Ubuntu更新源设定
我的Ubuntu更新源设定,速度还蛮快滴~ #sudo gedit /etc/apt/sources.list [code="这个是ubuntu原本的"]deb cdrom:[Ubuntu 9.04 _Jaunty Jackalope_ - Release i386 (20090421.3)]/ jaunty main restricted # See http://help.ubun...2010-02-23 10:47:31 · 122 阅读 · 0 评论 -
Ubuntu package download website
http://packages.ubuntu.com/原创 2010-05-19 13:04:38 · 298 阅读 · 0 评论 -
apt-get提示插入cd的解决办法
当用apt-get的时候,有时候会出现如下提示 比如[code="cmd"]sudo apt-get install git-core[/code]的时候 [code="cmd"]Do you want to continue [Y/n]? y Media change: please insert the disc labeled 'xxxxxxxx- Your ubuntu cd ...原创 2010-05-19 13:26:30 · 579 阅读 · 0 评论 -
Ubuntu更新源列表(更新到10.10)
[size=large][b][color=blue]Ubuntu 10.10[/color][/b][/size] [code="edit"]#官方的Ubuntu 10.10要保留几个用于紧急更新 deb http://security.Ubuntu.com/ubuntu maverick-security main restricted deb-src http://securi...原创 2010-05-21 11:29:43 · 169 阅读 · 0 评论 -
Ubuntu新安装后需要做的事
其中的某些步骤没有亲自尝试过,遇到问题可以先google下。附件是ubuntu截图工具 1. 修改你的源,并升级到最新的系统,这个最最基本的,必做(如果感觉很麻烦,就用优化软件来做): 参考本博其他文章 http://allenshao.iteye.com/blog/671562 2. 安装输入法,你可以在SCIM和fcitx输入法中任选一种安装(强列推荐fcitx) ...原创 2010-05-25 09:18:43 · 526 阅读 · 0 评论 -
Wubi安装ubuntu10.04
http://www.wubi-installer.org/原创 2010-05-25 11:05:23 · 130 阅读 · 0 评论 -
如何释放Ubuntu多余的空间?如何给Ubuntu扩容(install inside windows)?
[color=red]最近发现ubuntu空间老被占满,腾出了5G空间,不过一会儿df看,root使用率100%,貌似rm -rf /var/log/* 后,立马多出了20个G[/color] 由于装Ubuntu的时候没有划多一点空间,导致现在Ubuntu硬盘空间太小,而又没有找到怎样新增硬盘空间的办法(我是采用Install inside windows安装),所以目前能做的事情如下: ...原创 2010-05-28 09:06:58 · 260 阅读 · 0 评论 -
更换Ubuntu Java开发环境
allen@ubuntu:~/jordan/cts05$ [b][color=red]sudo update-alternatives --config java[/color][/b] There are 2 alternatives which provide `java'. Selection Alternative -------------------------...原创 2010-05-28 10:31:12 · 97 阅读 · 0 评论 -
AOSP source code build error: Virtual memory exhausted: Cannot allocate memory
Sometimes compiling certain things from source I've received a "virtual memory exhausted: Cannot allocate memory" error. The following is a quick tip to maybe allow gcc/libtool/make/whatever to finish...原创 2014-01-02 15:47:09 · 347 阅读 · 0 评论