10 2013 档案

摘要:在debian7上安装glibc的时候会出现如下信息:configure: error: you must configure in a separate build directory解决方法是要在glibc的解压目录下创建如glibc-build的文件夹,如glibc-2.8.tar.gz解压到~/install文件夹下:tar xvf glibc-2.8.tar.gzcd glibc-2.8mkdir glibc-buildcd glibc-build../configuremakesudio make install中间会提醒一些错误,通过../configure --?和sudo a 阅读全文
posted @ 2013-10-13 22:39 linuxkid 阅读(1983) 评论(0) 推荐(0)
摘要:在windows下有很多,常用的如hash1.04,很容易操作的就可以得到md5、sha1和sha256等hash值,不过客户有的是使用ubuntu系统,其实linux发行版一般都会自带命令行程序进行hash校验的,常用的有md5sum、sha1sum、sha256sum,具体使用方法如下(以sha256sum为例,其它同):sha256sum a.tar.gz > asum导出的名字可以随便起,这样就可以得到sha256sum的值了,当然在ubuntu下也有图形化的hash校验程序,运行sudo apt-get install gtkhash,就可以安装使用了,与windows的基本没 阅读全文
posted @ 2013-10-10 15:00 linuxkid 阅读(1519) 评论(0) 推荐(0)
摘要:linux中很多已有的源码都会按照./configure -> make -> make installd的过程编译,但是如果没有sudo权限就无法编译使用。其实完全可以使用./configure的参数来指定安装路径,然后make install的时候就会放在自己的目录下,如下:./configure --prefix=要指定的安装的完整路径makemake install在此就装到了指定路径了在.bashrc通过PATH定位指定路径即可。 阅读全文
posted @ 2013-10-10 14:57 linuxkid 阅读(2065) 评论(0) 推荐(0)
摘要:处理方法如下:$ cd .repo/manifests$ git stash$ git clean -dxf然后回到工程目录,重新repo sync就可以了。 阅读全文
posted @ 2013-10-10 14:39 linuxkid 阅读(2710) 评论(0) 推荐(0)
摘要:1.感觉使用起来比较慢,可能是由于wine使用c-s模式工作,可以运行如下命令尝试是否改善: sudo iptables -I INPUT -s 127.0.0.1 -j ACCEPT 阅读全文
posted @ 2013-10-10 10:04 linuxkid