`
haohappy2
  • 浏览: 325811 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Some useful commands in FreeBSD

阅读更多

1.查看网络流量

   a.systat -if 1 (1表示1s刷新屏幕一次)

   b.netstat 1

   # Traffic 流量 peak 峰值 average 平均值

2.查看硬盘信息

   diskinfo -vt /dev/ad0

3.查看核心信息

   vmstat 1

4.断电后系统无法启动

   a.启动到sing user模式

   b.fsck

   c.reboot

5.硬盘分区时-shift+F -->NO可以使用全部空间

6.ctrl+alt+backspace 杀掉xwindows

7.alt+F1...F8 或 printscreensysr循环切换控制台

8.shutdown now 切换到单用户模式

   shutdown -p now shutdown -hp now 关闭电源

   shutdown -r now reboot 重新启动机器

9.升级内核后无法启动

   a.重启机器到10秒读秒时按enter以外的任意键

   b.unload

   c.boot kernel.old 或其他可以启动的内核

10.挂载ntfs,fat32分区和u盘

   ntfs: mount_ntfs -C eucCN /dev/ad0s5 /mnt/d

   fat32:mount_msdos -L zh_CN.eucCN /dev/ad0s6 /mnt/e

   u盘:  mount_msdos -L zh_CN.eucCN /dev/da0s1 /mnt/u

11.卸载分区

   umount /dev/ad0s5

   umount -f /dev/ad0s5 (强制卸载)

12.查看进程

   top   ps auxww  ps -ef |grep xxx

13.查看硬盘详细分区信息&读写状况

   gstat

14.声卡

   vi /boot/defaults/loader.conf

   更改snd_ich_load="NO"->"YES" #intel ich

   检测声卡 kldstat 或 dmesg |grep pcm

15.ls -G 显示颜色

16.sysctl sysctl -a 查看变量

17.丢失root密码

   启动到单用户模式,执行 /sbin/mount -a,

   然后拥passwd更改密码

18.查找程序或文件

   whereis 程序名

   locate 文件名

   whatis xxx 要找东西但不知道它是什么

   grep bpf /usr/src/sys/i386/conf/GENERIC 在文件中找指定文本

   #只能对文本进行grep,如是命令,则

   command |grep text

   grep text filename

19.中文locale

   zh_CN.eucCN zh_CN.GBK zh_CN.GB18030 zh_CN.euc

   #语言代码_国家代码.字符编码

   #查看环境变量 locale

20.xmms,mplayer 乱码问题

   在用户目录下建立 .gtkrc.mine 文件.代码如下

   style "gtk-default-zh-cn"{

        fontset="-*-simsun-medium-r-normal--12-*-*-*-*-*-iso8859-1,

                 -*-simsun-medium-r-normal--12-*-*-*-*-*-gb2312.1980-0,*-r-*"

  }

   class "GtkWidget" style "gtk-default-zh-cn"

  #前提是安装 simsun 字体,可参照以下方法安装。

  #拷贝 Windows系统下的 simsun.ttc 字体文件到 /usr/X11R6/lib/X11/fonts/TrueType/,没有的话创建。

   # mkfontdir /usr/X11R6/lib/X11/fonts/TrueType

   # fc-cache -fv

21.停止sendmail

   vi /etc/rc.conf 加入

   sendmail_enable="NONE"

22.you have mail

   mail 回车,输入1看第一封邮件...输入?看帮助

23.traceroute &ping的整合工具my traceroute /mtr

   /usr/ports/net/mtr

   使用: mtr [url]www.163.com[/url]

24.本地化设置,以系统默认的csh为例

   vi /etc/csh.cshrc 加入

   setenv LANG zh_CN.eucCN (语言设为中文)

   setenv LC_ALL zh_CN.eucCN (所有本地子集设为中文)

   setenv XMODIFIERS @im=fcitx (X下的中文输入法)

   set prompt = "%B%m<%/>"(个性化控制台%B颜色%m主机%/目录)

   set autolist  (自动补齐扩展)

   set nobeep    (告诉应用程式避免发出哔哔声)

   set filec     (使档案名称在命令列被完成)

   alias ls        ls -FG (彩色化ls)

25.在/etc/fstab中挂载fat32分区

   /dev/ad0s5  /mnt/d  msdos  rw,-L=zh_CN.eucCN 2 2

26.使用gnome2的gdm做桌面管理器

   vi /etc/rc.conf 加入

   gdm_enable="YES"

   vi /root/.dmrc 更改Language=zh_CN.UTF8-->zh_CN.eucCN

27.远程连接windows终端

   rdesktop [-a 16 -f] server'IP[:port]

28.播放APE格式音乐

   /usr/ports/

分享到:
评论

相关推荐

    FreeBSD Commands

    FreeBSD Commands It is useful!

    Unix Commands (Aix Freebsd Hpux Linux Solaris & Tru64)

    This document provides an in-depth overview of Unix commands and directory mappings across several popular Unix-based systems, including AIX, FreeBSD, HP-UX, Linux (specifically Red Hat), Solaris, and...

    TS Useful Commands

    cisco ccie rs ts useful command

    TeX Commands available in MathJax.pdf

    TeX命令是数学排版系统,尤其在学术界广泛使用,用于创建复杂的数学表达式和公式。MathJax是一个开源的JavaScript库,能够在网页上渲染数学公式,它兼容并支持TeX和LaTeX语法。Carol JVF Burns博士整理的这份文档...

    MATLAB commands in numerical Python

    Where Octave and Scilab commands are omitted, expect Matlab compatibility, and similarly where non given use the generic command. 主要是matlab中一些函数如何转换为Python下函数的实现

    Teach Yourself FreeBSD in 24 Hours

    《Teach Yourself FreeBSD in 24 Hours》是一本旨在帮助读者快速掌握FreeBSD操作系统的书籍。本书由Michael Urban和Brian Tiemann共同编写,于2003年由Sams Publishing出版。该书版权明确指出,未经出版商书面许可,...

    a project model for the FreeBSD Project.7z

    Because some committers work on different parts, the total number in the committers section of the triangle is higher than in the above triangle. The kernel is the main building block of FreeBSD. ...

    FreeBSD_Commands

    ### FreeBSD常用命令详解 #### 联机手册 在FreeBSD系统中,了解命令的使用方法及选项至关重要。为此,提供了几种方式来查阅命令的帮助文档。 - **man**:是最常用的帮助工具,提供了详细的命令使用说明。 - `man...

    java8集合源码-Linux-Useful-Commands:Linux-有用的命令

    in my case it is "webitbuzz" * WiFi Security &gt;&gt; Choose "WPA & WPA2 Personal" from Security dropdown * Set a Password, in my case "0123456789" * IPV4 Settings &gt;&gt; Shared to other computers and Save Now...

    Cross-platform Linux commands in ES6.zip

    Linux是一套免费使用和自由传播的类Unix操作系统,由林纳斯·托瓦兹于1991年首次发布。 Linux不仅是一个强大的操作系统,也是一个庞大的技术生态系统,涵盖了从服务器到个人电脑的各种应用场景。...

    DTrace Dynamic Tracing In Oracle Solaris, Mac OS X & FreeBSD PDF

    Now, for the first time, there's a comprehensive, authoritative guide to making the most of DTrace in any supported UNIX environment--from Oracle Solaris to OpenSolaris, Mac OS X, and FreeBSD. ...

    Useful-Commands:[CS

    【标题】"Useful-Commands:[CS]" 指的可能是一个关于计算机科学(Computer Science,简称CS)的资源集合,特别关注与SourcePawn相关的实用命令。SourcePawn是一种脚本语言,广泛应用于游戏服务器,尤其是那些基于...

    Laravel开发-commands

    此外,Artisan也支持自定义命令,开发者可以根据项目需求创建自己的命令,这正是“Laravel开发-commands”所关注的领域。 二、自定义Artisan命令 创建自定义Artisan命令的步骤如下: 1. 使用`...

    SCSI_Primary_Commands_4.pdf

    根据给定文件的信息,我们可以深入探讨SCSI(小型计算机系统接口)Primary Commands 4(SPC-4)的相关知识点。这份文档是信息技术领域内SCSI初级命令集的详细指南,由T10技术委员会(隶属于国际信息技术标准委员会...

    SCSI Primary Commands - 4 (SPC-4)

    SCSI Primary Commands - 4 (SPC-4) spc4r25 This is an internal working document of T10, a Technical Committee of Accredited Standards Committee INCITS (InterNational Committee for Information ...

    The Linux Commands Handbook

    The Linux Commands Handbook follows the 80/20 rule: learn in 20% of the time the 80% of a topic. The author find this approach gives a well-rounded overview. This book does not try to cover ...

    SCSI Block Commands – 4 (SBC-4)

    SCSI Block Commands – 4 (SBC-4) This standard defines the command set extensions to facilitate operation of SCSI direct access block devices. The clauses in this standard, implemented in conjunction ...

    SCSI Block Commands – 3 (SBC-3).pdf

    此标准规定了SCSI Block Commands - 3(SBC-3)命令集的功能要求.SBC-3允许SCSI块逻辑单元(如刚性磁盘)连接到计算机并提供其使用的定义。 该标准与SCSI Block Commands(SBC-2)命令集INCITS 405-2005保持高度兼容...

    Linux_Commands and_Shell_Programming_2nd

    书名为《Linux Commands and Shell Programming 2nd》,即第二版《Linux命令及Shell编程实用指南》,作者为Mark G. Sobell。这本书被描述为Linux命令行操作和Shell编程的必备读物,其内容通俗易懂,翔实可靠,专注于...

    Python库 | rt.commands-0.1.zip

    在本文中,我们将深入探讨一个名为"rt.commands"的Python库,该库的版本为0.1,已经封装在一个zip压缩包中。 "rt.commands-0.1.zip"是一个包含了"rt.commands"库的压缩文件,它可能是为了便于分发、存储和安装而...

Global site tag (gtag.js) - Google Analytics