Linux
yuleicqut
这个作者很懒,什么都没留下…
展开
-
Linux 之ubuntu 文本阅读器打开text 乱码
安装好Ubuntu 12.04发现打开以前到windows的text文件后,乱码。在ubuntu 软件中心下载leafpad阅读器后,可以正常打开text文件。原创 2012-08-06 13:41:00 · 1542 阅读 · 0 评论 -
man section
使用man时可以指定不同的section来浏览,各个section意义如下: 1 - commands2 - system calls3 - library calls4 - special files5 - file formats and convertions6 - games for linux7 - macro packages and conventions转载 2016-05-10 12:15:25 · 442 阅读 · 0 评论 -
Linux 小知识点:创建变量
容易犯的下错误,等号两边不能有空格!!!如,根据当前日期创建变量‘date’正确写法:date=$(date %Y%m%d)错误写法date = $(date $Y%m%d)原创 2016-03-18 21:12:12 · 376 阅读 · 0 评论 -
ubuntu sudo update与upgrade的作用及区别
ubuntu sudo update与upgrade的作用及区别sudo apt-get update: 这个命令,会访问源列表里的每个网址,并读取软件列表,然后保存在本地电脑。sudo apt-get upgrade: 这个命令,会把本地已安装的软件,与刚下载的软件列表里对应软件进行对比,如果发现已安装的软件版本太低,就会提示你更新。转载 2016-03-02 21:18:38 · 4105 阅读 · 0 评论 -
linux 之qt 学习网站
http://www.kuqin.com/qtdocument/tutorial.html原创 2012-08-07 08:33:05 · 345 阅读 · 0 评论 -
英语词典 English dictionary in linux
http://bbs.shendu.com/thread-1819414-1-1.htmlUbuntu English dictionary转载 2014-02-25 19:15:04 · 1370 阅读 · 0 评论 -
Linux common commands
1. cd :"change directory"2. the key of "tab" is automatic command line completion.3. pwd : print the current working directory4. the development environment of C/C++ under Ubuntu 因为缺少一原创 2014-01-16 23:22:36 · 831 阅读 · 0 评论 -
linux 设置root 密码
输入:sudo passwd root切记,不要写成:sudo password rootsudo passwd 用户名原创 2012-10-03 23:53:08 · 463 阅读 · 0 评论 -
我常用的ubuntu12.04快捷键
1. "super"键,对于我们常用对美式键盘来说,“super”键就是“win”键。长按super键,弹出快捷键提示。2.拖动窗口: Alt+“按住左键”原创 2012-10-07 19:01:53 · 466 阅读 · 0 评论 -
Linux 之 ubuntu 快捷键
1 Alt +Home :打开主文件夹2 Alt+鼠标点住窗口:拖动窗口原创 2012-08-07 12:13:27 · 239 阅读 · 0 评论 -
Linux 之 ubuntu12.04 和Qt 安装
1. 使用wubi安装ubuntu,非常方便,安装步骤非常傻瓜、简单。首先***.iso(ubuntu-12.04-desktop-i386.iso)载入虚拟光驱,运行wubi,进行简单设置,然后安装,在此过程中电脑会重启两次,直到安装成功,这期间用户不用参与。2.设置root 密码:utuntu安装成功后,进入“终端”。可以通过“dash主页”,输入“终端”,点击进;原创 2012-08-06 11:59:21 · 1719 阅读 · 0 评论 -
Linux - Ubuntu 安装MySQL
参考链接:http://blog.csdn.net/fighter_yy/article/details/407538891. 安装MySQL Server命令:sudo apt-get install mysql-serverNotice:安装过程中会提示设置root密码 2. 用netstat命令查看mysql 服务是否已经开启命令:sudo netstat -原创 2016-06-05 18:58:38 · 283 阅读 · 0 评论