
Linux
tycoona
这个作者很懒,什么都没留下…
展开
-
Clone Linux源码报错(server certificate verification failed. CAfile: none CRLfile: none)
Git clone linux源码时报以下错误:解决方法:在终端中输入:git config --global http.sslverify falsegit config --global https.sslverify falsexport GIT_SSL_NO_VERIFY=1之后下载就正常了原创 2021-11-09 11:21:28 · 606 阅读 · 0 评论 -
How to start/restart/stop apache server on ubuntu
<br />1. start<br /> sudo /etc/init.d/apache2 start<br />2. restart<br /> sudo /etc/init.d/apache2 restart<br />3. stop<br /> sudo /etc/init.d/apache2 stop原创 2011-02-24 15:01:00 · 786 阅读 · 0 评论 -
ubuntu10.04安装KScope
在Ubuntu10.04上安装KScope,使用如下脚本可完成:1.复制到文件内,文件命名为yourname.sh2.更改文件权限为可执行 sudo chmod +x youname.sh3.sudo ./yourname.sh4.ok,不出意外的话,安装成功,可以使用了#!/bin/bash# This script helps you install Kscope on Ubuntu10.04.# You can also use it to fix "Kscope doesn'转载 2011-02-25 11:03:00 · 923 阅读 · 0 评论 -
bzip2用法详解
<br /> 功能说明:.bz2文件的压缩程序。<br /><br /> 语 法:bzip2 [-cdfhkLstvVz][--repetitive-best][--repetitive-fast][- 压缩等级][要压缩的文件]<br /><br /> 补充说明:bzip2采用新的压缩演算法,压缩效果比传统的LZ77/LZ78压缩演算法来得好。若没有加上任何参数,bzip2压缩完文件后会产生.bz2的压缩文件,并删除原始的文件。<br /><br />原创 2011-02-17 14:48:00 · 2198 阅读 · 0 评论 -
解决添加软件源错误(gpgkeys: HTTP fetch error 7: couldn't connect to host)的问题
最近在用add-apt-repository添加源时,常常出现以下错误,导致一些第三方源的软件无法安装。seagull@seagull-desktop:~$ sudo add-apt-repository ppa:shawn-p-huang/ppaExecuting: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/原创 2011-03-07 16:30:00 · 15507 阅读 · 0 评论 -
更新ubuntu导致vmware虚拟机启动不了解决方法
升级ubuntu kernel后,vmware虚拟机启动不了了,报出“get_user_pages"找不到的错误,原来是在新kernel中,该函数不存在了 ,而vmware中还用的是该函数,因此按如下方式替换便可:1)vmmon.tar把vmmon-only/linux/hostif.c文件里的“get_user_pages”全都替换成“get_user_pages_fast" cd ...原创 2019-10-07 10:15:45 · 1662 阅读 · 0 评论