
ubuntu
一只辛巴
这个作者很懒,什么都没留下…
展开
-
exec系列函数(execl,execlp,execle,execv,execvp)使用
https://www.cnblogs.com/leijiangtao/p/4483009.html原创 2019-11-25 18:24:33 · 222 阅读 · 0 评论 -
Linux C语言获取时间 gettimeofday timeval
timeval 结构体源码,gettimeofday() 的第一个参数#ifndef __timeval_defined#define __timeval_defined 1#include <bits/types.h>/* A time value that is accurate to the nearest microsecond but also has ...原创 2019-11-19 19:49:22 · 1580 阅读 · 0 评论 -
使用anaconda安装PIL 版本错误 及其小心
使用 conda install PIL 时,发现安装这个包怎么要安装这么多东西,仔细一看不得了在安装PIL的过程中,PIL会把python3变为python2 要尤其小心PIL仅支持到python2.7,但是在PIL的基础上创建了兼容的版本,名字叫Pillow,支持最新Python 3.x,又加入了许多新特性.conda install pillow安装之后 使用 imp...原创 2019-11-18 15:45:31 · 3522 阅读 · 0 评论 -
Ubuntu 查看电池损耗
非常简单,打开终端输入命令:gnome-power-statistics可以查看电池损耗,电池容量,类型等等原创 2019-11-18 01:10:54 · 4961 阅读 · 2 评论 -
Ubuntu修改Grub引导项 默认启动项
sudo gedit /etc/default/grub 使用文本编辑器(简单)sudo vim /etc/default/grub 使用vim(一般会用vim的也不会用这个了)参数:GRUB_DEFAULT:默认启动项,按列表的顺序,从0开始GRUB_TIMEOUT:启动选择超时时间,设置为-1取消倒计时最后执行更新:sudo update-grub...原创 2019-11-16 16:36:06 · 3706 阅读 · 0 评论 -
ubuntu 编译内核出现的问题
1. /bin/sh: 1: bison: not found错误信息:/bin/sh: 1: bison: not foundscripts/Makefile.lib:196: recipe for target 'scripts/kconfig/zconf.tab.c' failedmake[1]: *** [scripts/kconfig/zconf.tab.c] Error ...原创 2019-11-15 12:08:23 · 1981 阅读 · 1 评论 -
Linux 文件解压缩
一、zip格式 zip最大的优点是在不同的操作系统上使用。缺点是支持的压缩率不高,而tar.gz和tar.bz2压缩率方面做得很好。 压缩一个文件: zip-rarchive_name.zip filename (-r是压缩) 解压一个文件: unzip archive_name.zip ...原创 2019-11-14 16:01:45 · 356 阅读 · 0 评论 -
Ubuntu安装使用mysql
sudo apt-get install mysql-serverapt-get isntall mysql-clientsudo cat /etc/mysql/debian.cnf 打开/etc/mysql/debian.cnf 。内容如下:# Automatically generated for Debian scripts. DO NOT TOUCH![clien...原创 2019-08-30 14:11:52 · 113 阅读 · 0 评论 -
ERROR 2002 (HY000): Can't connect to local MySQL server through socket
启动mysql:方式一:sudo /etc/init.d/mysql start方式二:sudo service mysql start停止mysql:方式一:sudo /etc/init.d/mysql stop方式二:sudo service mysql stop重启mysql:方式一:sudo/etc/init.d/mysql restart方式二:sudo ...原创 2019-08-30 14:50:37 · 150 阅读 · 0 评论