
LINUX
iteye_12096
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu ISO镜像升级
1、下载Ubuntualternate ISO镜像,看清楚一定要是alternate版2、挂载光盘镜像,要使用-oloop参数,镜像文件及挂载位置可自行修改sudomount -t iso9660 -o loop /media/disk/ubuntu-9.10-alternate-i386.iso/media/cdrom03、开始升级,如果之前...2009-11-01 09:53:00 · 322 阅读 · 0 评论 -
Ubuntu 10.04 (Lucid) 更新源
deb http://mirror.lupaworld.com/Ubuntu/ lucid main universe restricted multiversedeb-src http://mirror.lupaworld.com/Ubuntu/ lucid main universe restricted multiversedeb http://mirror.lupaworld.com/U...2010-04-10 22:02:00 · 93 阅读 · 0 评论 -
Linux Command
Linux文件管理命令1 ls:显示文件名2 cat:显示文本文件内容3 rm:删除文件4 less:分屏显示文件5 cp:复制文件6 mv:更改文件名7 grep:查找字符串8 head:显示文件头部9 tail:显示文件尾部10 sort:按顺序显示文件内容11 uniq:忽略文件中的重复行12 diff:比较两个文件13 diffst...2010-11-20 13:56:00 · 166 阅读 · 0 评论 -
轻松安装卸载Linux软件
在Windows下安装软件时,只需运行软件的安装程序(setup、install等)或者用zip等解压缩软件解开即可安装,运行反安装程序(uninstall、unware、“卸载”等)就能把软件清除干净,完全图形化的操作界面,简单到只要用鼠标一直点击“下一步”就可以了。而 Linux好象就不一样了,很多的初学者都抱怨在Linux下安装和卸载软件非常地困难,没有像使用Windows时那么...2010-06-08 09:00:00 · 119 阅读 · 0 评论 -
Ubuntu 10.04(Lucid) 教育网更新源
电子科技大学源(校园网推荐,快)deb http://ubuntu.uestc.edu.cn/ubuntu/ lucid main restricted universe multiversedeb http://ubuntu.uestc.edu.cn/ubuntu/ lucid-backports main restricted universe multiversedeb http://u...2010-06-12 22:52:00 · 200 阅读 · 0 评论 -
Grub 2 修改默认引导系统
总有人装了Ubuntu仍忘不了Windows。我在刚接触linux 的时候也是这样,不过现在好了很多,如果不是必须要用Windows 的时候,我一般都选择进入Ubuntu。为了那些刚使用Ubuntu的人方便进入Windows,也为了以后有人再问我的时候,我可以很轻松明了的回答ta。特意在此记下GRUB2是如何修改默认引导系统的。 在网上Google或Baidu一下,结果...2010-07-11 23:06:00 · 283 阅读 · 0 评论 -
超实用的Linux/Unix快捷键大汇总
下述所有命令在Linux/unix的shell下有效,這里以bash為主。如有出入,以你自己的服務器為准。本文所指的Linux主要指RHEL/CentOS,unix指的是FreeBSD,這也是服務器中用得最多的版本。Ctrl+a切換到命令行開始這個操作跟Home實現的結果一樣的,但Home在某些unix環境下無法使用,便可以使用這個組合;在Linux下的vim,這個也是有效的;另外,...2010-07-12 12:55:00 · 155 阅读 · 0 评论 -
How to Chang the root Password
As default Ubuntu has no password set for the root user. To gain root access you have to type in your own user password. This is the password you set for the first user while installing Ubuntu.To man...2010-07-25 14:17:00 · 148 阅读 · 0 评论 -
Ubuntu 10.04(Lucid) ipv6 更新源
deb http://mirror.switch.ch/ftp/ubuntu/ lucid main multiverse restricted universe deb http://mirror.switch.ch/ftp/ubuntu/ lucid-backports main multiverse restricted universe deb http://mi...2010-07-29 18:23:00 · 159 阅读 · 0 评论 -
U盘装Linux(Ubuntu)
把U盘刻成光盘(以ubuntu9.10为例)前提:电脑支持U盘启动,有些电脑是不支持的。开始制作一、材料:UltraISO(软碟通)软件ubuntu 9.10 isou盘(推荐1G以上)。二、操作平台:windows xp/vista [我是在vista下制作的,必须用管理员权限打开UltraISO(软碟通)](右击其快捷方式,以管理员身分打开)说明:1. 现在买回家的应该都是...2010-04-06 16:03:00 · 126 阅读 · 0 评论 -
Linux ssh安全设置
SSH服务器配置文件是/etc/ssh/sshd_conf。在你对它进行每一次改动后都需要重新启动SSH服务,以便让改动生效。 1、修改SSH监听端口 默认情况下,SSH监听连接端口22,攻击者使用端口扫描软件就可以看到主机是否运行有SSH服务,将SSH端口修改为大于1024的端口是一个明智的选择,因为大多数端口扫描软件(包括nmap)默认情况都不扫描高位端口。 打开/etc/...2010-09-28 21:55:00 · 139 阅读 · 0 评论 -
Ubuntu9.10 更新源
网易163的更新源debhttp://mirrors.163.com/ubuntu/ karmic main restricted universemultiversedeb http://mirrors.163.com/ubuntu/ karmic-security mainrestricted universe multiversedeb http:/...2009-11-21 20:31:00 · 249 阅读 · 0 评论 -
Ubuntu终端汉字的显示
Ubuntu终端字体不能显示汉字是非常别扭的。要使字符终端显示汉字其实很简单:$sudoapt-get install zhcon安装zhcon,安装以后,要用zhcon--utf8 --drv=vga来启动zhcon。这个命令长了点。但不要紧,在/etc/bash.bashrc中添加这么一行:#aliaszhcon='zhcon --utf8 --dr...2009-12-18 18:17:00 · 323 阅读 · 0 评论 -
非常棒的几款Ubuntu主题
这几款漂亮的主题在网上流传很久了,它们都出自Zgegblog作者,感谢他为我们带来这么棒的主题,而且安装非常方便,一共是九套主题,下面就是在ubuntu 9.10中的安装方法: 首先需要编辑 /etc/apt/sources.list 文件,在终端中输入: gksudo gedit /etc/apt/sources.list 在其中加入以下源: deb http://ppa.launchpad.n...2009-12-18 22:50:00 · 220 阅读 · 0 评论 -
ubuntu 开机自动开启数字小键盘
首先,需要安装一个小软件,在终端中执行以下:sudoapt-get install numlockx然后编辑:sudogedit /etc/gdm/Init/Default把下面的内容添加到最后那行的前面,(“exit0“的前面)if[ -x /usr/bin/numlockx ]; then numlockx on fi重启或者...2009-12-19 11:49:00 · 181 阅读 · 0 评论 -
How to: Change Hostname
Environment:Ubuntu 10.04(Lucid)改變需要理由,更改只需要方法。所以下面的話只是教你如何更改主機名。首先,編輯/etc/hostname,把里面的主機名改為你現在想要的主機名。hostname文件就像它的名字一樣,里面只有一句話,更准確的說是一個詞,就是你現在的主機名。比如我的hostname現在是ubuntu,那么cat < /etc/hostname得到的...2010-08-18 16:20:00 · 162 阅读 · 0 评论 -
Linux find命令詳解
由于find具有強大的功能,所以它的選項也很多,其中大部分選項都值得我們花時間來了解一下。即使系統中含有網絡文件系統( NFS),find命令在該文件系統中同樣有效,只你具有相應的權限。在運行一個非常消耗資源的find命令時,很多人都傾向于把它放在后台執行,因為遍曆一個大的文件系統可能會花費很長的時間(這里是指30G字節以上的文件系統)。一、find 命令格式1、find命令的一般形式為;...2010-09-04 14:29:00 · 149 阅读 · 0 评论 -
How to add a user to the sudoers list
How to add a user to the sudoers list? Beleive it or not, this is a fairly common question and in all reality the answer is quite simple. Adding a user to the sudoers list on a fully installed Linux s...2010-09-11 20:54:00 · 160 阅读 · 0 评论 -
Fedora Kernel Headers的安装
想尝试一下KDE桌面,可是有不想再已有的Ubuntu上安装,于是决定在virtual machine上装一个Live CD Fedora,然后在vm Fedora上安装vmware tools,以方便Host和Guest之间的文件交互。安装VMware tools则要求OS先安装gcc和kernel headers。 关于gcc的安装我是知道的,只要运行$sudo yum install gcc...2010-09-11 21:07:00 · 1098 阅读 · 0 评论 -
Linux Change or Rename User Name and UID
Q. How do I change user name (rename user name) or UID under Linux operating system?A. Use the usermod command to change user name under Linux. it modifies the system account files to reflect the cha...2010-08-10 07:25:00 · 162 阅读 · 0 评论