1、安装 wireshark 权限问题

  1. # 找到 dumpcap 位
  2. sudo find / -name dumpcap
  3. # 添加用户组
  4. sudo groupadd wireshark
  5. #
  6. sudo chgrp wireshark /opt/apps/org.wireshark.wireshark/files/bin/dumpcap
  7. # 修改权限
  8. sudo chmod 4755 /opt/apps/org.wireshark.wireshark/files/bin/dumpcap
  9. # 添加用户到 wireshark用户组
  10. sudo usermod -aG wireshark hdj

2、转换为dos转换为unix 文件

  1. find . -name "*.sh" | xargs sed -i 's/\r$//g'

3、linux 光标不见了

  1. echo -e "\033[?25l" 隐藏光标
  2. echo -e "\033[?25h" 显示光标

4、Linux 读取的环境环境变量

  1. /etc/profile:此文件为系统的为每个用户设置环境信息,当用户第一次登录时,该文件被执行.
  2. 并从/etc/profile.d 目录的配置文件中搜集shell的设置.
  3. /etc/bashrc :为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取.
  4. ~/.bash_profile :每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该
  5. 文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件.
  6. ~/.bashrc :该文件包含专用于你的bash shellbash信息,当登录时以及每次打开新的shell时,该
  7. 该文件被读取.
  8. ~/.bash_logout :当每次退出系统(退出bash shell)时,执行该文件.
  9. bash_profile 、.bashrc 、和.bash_logout
  10. 上面这三个文件是bash shell的用户环境配置文件,位于用户的主目录下。
  11. .bash_profile是最重要的一个配置文件,它在用户每次登录系统时被读取,里面的所有 命令都会被bash执行。.profile(由Bourne ShellKorn Shell使用)和.login(由C Shell使用)两个文件是.bash_profile的同义词,目的是为了兼容其它Shell Debian中使用.profile文件代 替.bash_profile文件。
  12. .bashrc 文件会在bash shell调用另一个bash shell时读取,也就是在shell中再键入bash命令启动一个新shell时就会去读该文件。这样可有效分离登录和子shell所需的环境。但一般 来说都会在.bash_profile里调用.bashrc脚本以便统一配置用户环境。
  13. .bash_logout 在退出shell时被读取。所以我们可把一些清理工作的命令放到这文件中。
  14. 登录Linux时,首先启动 /etc/profile 文件,然后再启动用户目录下的 ~/.bash_profile、 ~/.bash_login ~/.profile文件中的其中一个(根据不同的linux操作系统的不同,命名不一样),执行的顺序为:~/.bash_profile ~/.bash_login、 ~/.profile
  15. 如果 ~/.bash_profile文件存在的话,一般还会执行 ~/.bashrc文件。

5、创建桌面图标

  1. # 创建应用图标
  2. vim xxx.desktop
  3. #填写一下内容
  4. [Desktop Entry]
  5. Encoding=UTF-8
  6. Name= #图标名称
  7. Comment= #描述
  8. Exec= #(脚本启动路径)
  9. Icon= # (图标路径)
  10. Terminal=false
  11. StartupNotify=true
  12. Type=Application
  13. Categories=Application;Development;
  14. #给文件赋权限,并放到/usr/share/applications/目录下面
  15. chmod -x app.desktop #回车
  16. sudo cp app.desktop /usr/share/applications #回车