Q: 请问 mount 命令如何使用?
A: 写常用的几个,其馀请 man 8 mount
bootdisk:
mount -t minix /dev/fd0 /mnt
(SingleBoy 注: 这里 -t 后面的参数可能需要用别的, 可以试下msdos 或者 ext2) DOS Partition:
假设 dos 装在 /dev/hda1, 并且存在 /dos 这个目录, 且为空.
则 mount -t vfat /dev/hda1 /dos 光碟机:
假设 CD-ROM 装在 /dev/hdb, 并且存在 /cdrom 这个目录, 且为空.则 mount -t is9660 /dev/hdb /cdrom ^^^^^^->cdrom 的档案格式..
-- by lanzj (nal) 收集整理
Q: 我不能 mount 我的光驱了,根据 /etc/fstab 来mount /cdrom,系统出错
A: 请在启动时看清楚你的光驱接在哪个设备上,或者在进入系统后运行dmesg看看。假设接在/dev/hdc上,就如此这般:
#cd /dev
#ln -s hdc cdrom
以后就可以用mount /cdrom来将光驱mount到/cdromm上了。
-- by emi (你既无心我便休)
Q: 某个分区 mount 出来是只读, 如何解决?
用mount -v可以看到那个分区是(rw)的,应该是可写的。可是就是没法写进东西去,老是说这是一个read-only filesystem
A: mount -n -o remount,rw <安装点>
--by LinuxFarmer (LinuxZealot)
Q: 请问 ls --color 时显示的彩色是如何定义的? 如何修改?
A: 颜色:绿色--->可执行档
蓝色--->目录
红色--->压缩档
浅蓝色->连结档
灰色--->一般档(没有定义的档)
可修改/etc/DIR_COLORS
-- by tou.bbs@Friend.pine.ncu.edu.tw (风)
Q: 如何让 ls 只列出目录不列出档案
A: ls -l | grep ^d
或者
ls -F | grep /
-- by lanzj (nal) 收集整理
Q: 请问gz和tar结尾的文件如何安装?
A: .tar .......tar vxf*.tar
tar.gz.....tar vzxf *.tar.gz
-- by aazheng (你快乐所以我快乐)
tar zvfx *.tar.gz(*.tgz) -C directory //把*.tar.gz文件解开到指定目录 -- by lcipher (断剑阿飞) 如果是slackware 的软件包, 就是用 .tgz 结尾的. 个人认为这是 .tar.gz 的缩写. 这种软件包是包含路径的, 所以不用管它是在哪个目录下, 安装就用tar zvxf xxxxx.tgz就可以了.
-- by SingleBoy (孤鹰★无欲无求★)
Q: 如何在 Linux 中拷贝和粘贴文本
A: 在 X Window 环境下, 可以用鼠标左键来选择文本,然后可以用鼠标中键把它粘贴到你所想要的地方。如果是两键鼠标则在配置是要选择防真3键鼠标,之后同时按下左右键模拟中键。
在控制台模式下, 需要启动gpm守护神(deamon)程序, 用鼠标右键来粘贴。
-- by merry (此情不渝)
Q: 如何让两个用户同时使用 X Windows?
A: 在同一个机器上使用多个XWindow:
Ctrl + Alt + F1: startx
Ctrl + Alt + F1: startx -- :2
然后可以用Crtl + Alt + F7和Ctrl + Alt + F8切换.
-- by nethunter (凤翼天翔) 收集提供
我记得最多能用四个..., try
startx --:3
startx --:4
then Ctl+Alt+F7~F10
-- by chan (?は 哲人でない)
Q: 如何在linux下查网卡的MAC地址?
A: 可以用 ifconfig 或者 arp
/sbin/ifconfig
eth1 Link encap:Ethernet HWaddr 00:10:4B:08:CE:38
~~~~~~~~~~~~~~~~~~~~~~~~~
inet addr:192.168.127.45 Bcast:192.168.127.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:7253226 errors:8369 dropped:0 overruns:0 frame:8370
TX packets:4501290 errors:0 dropped:0 overruns:0 carrier:2
collisions:111534
Interrupt:10 Base address:0xb800
/sbin/arp
Address HWtype HWaddress Flags Mask Iface
192.168.127.120 ether 00:10:A4:FE:35:02 C eth1
192.168.127.203 ether 00:80:C7:5A:E8:70 C eth1
handsome ether 00:00:E8:75:B6:52 C eth1