BNU-FZH

fengzhenhua@outlook.com

简介

《REVTEX 4 作者指南》是美国物理学会(APS)提供的,用于指导如何使用 REVTEX 4 来准备向 APS 期刊提交的手稿。在 TexLive已经收录,所以安装TexLive后,直接调用模板就可以了。

模板

这个模板是我写作时采用的,列在此处大家可以直接调用。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
\documentclass[aps,pre,showpacs,preprint,superscriptaddress]{revtex4-1}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amsmath}
\usepackage{ulem}
\usepackage{bm}
\usepackage{amssymb}
\usepackage{color}
\usepackage{epstopdf}
\usepackage{epsfig,dsfont,multirow}
\usepackage{physics}
\usepackage{tikz}
\usetikzlibrary{fadings,patterns}
\usepackage{float}
\usepackage[
pdfborder={0 0 0},
bookmarksnumbered=true,
pagebackref,
pdftex
]{hyperref}
\usepackage{orcidlink}

\begin{document}
\title{Your Article Title}
\author{YourName\,\orcidlink{0000-0000-0000-0000}}
\email[Contact author:]{YourEmail@xxx.com}
\homepage[Visit:]{https://YourHomePageSite}
\affiliation{School of Physics and Astronomy, Beijing Normal University, Beijing 100875, China}
% \thanks{miscellaneous text}
\date{\today}
\preprint{Preprint}
\keywords{electron-positron; laser}
\begin{abstract}
Your abstract
\end{abstract}

% \pacs{05.45.-a; 02.60.-x; preprint}

\maketitle

\section{Introduction}

\section{Reference}


\bibliographystyle{unsrt}
\bibliography{Reference.bib}
%
% 直接写引用信息,不推荐
%
% \appendix
%
% \begin{thebibliography}{99}\suppressfloats
%
% \bibitem{ComDyn}
% L. Carleson, T. W. Gamelin, Complex Dynamics, Springer, New York,
% NY, 1993.
%
% \bibitem{AITJF}
% S. Sutherland, An Introduction to Julia and Fatou Sets, in: C. Bandt,
% M. Barnsley, R. Devaney, K. J. Falconer, V. Kannan, V. Kumar P.B.
% (Eds.), Fractals, Wavelets, and their Applications, Springer Proceedings
% in Mathematics $\&$ Statistics, Springer International Publishing, Cham,
% pp. 37-60, 2014.
%
% \bibitem{MJFO}
% M.-F. Danca, M. Fečkan, Mandelbrot set and Julia sets of fractional order, Nonlinear Dynamics 111(10), 9555-9570 (2023).
%
% \bibitem{MSPPCRF}
% A. J. Mitchell, Existence of the Mandelbrot Set in the Parameter Planes of Certain Rational Functions, Theses and Dissertations, University of Wisconsin-Milwaukee (2016).
%
% \bibitem{GBBM}
% H. Jang, Y. So, S. M. Marotta, Generalized baby Mandelbrot sets adorned with halos in families of rational maps, Journal of Difference Equations and Applications 23(3), 503-520 (2017).
%
% \end{thebibliography}
\end{document}

重要宏包

用来插入作者的orcid, 调用和命令

1
2
\usepackage{orcidlink}
\orcidlink{0000-0000-0000-0000}

2. float

在LaTex中,\begin{figure}[htbp]是图片环境,常用选择项[htbp]是浮动格式:

  • [h] here,当前位置。将图形放置在正文文本中给出该图形环境的地方。如果本页所剩页面不够,这一参数将不起作用。
  • [t] top,顶部。将图形放置在页面的顶部。
  • [b] bottom,底部。将图形放置在页面的底部。
  • [p] page of its own,浮动页。将图形放置在一个允许有浮动对象的页面上。

一般使用[htb]这样的组合,只用[h]是没有用的。这样组合的意思就是LaTex会尽量满足排在前面的浮动格式,就是h-t-b这个顺序,让排版的效果尽量好。

[!h]只是试图放在当前位置。如果页面剩下的部分放不下,还是会跑到下一页的。一般而言,用[!h]选项通常会出现不能正确放置的问题,所以常用[ht][htbp]等, 这里加感叹号的意思是 忽略 “美学” 标准。

如果你确实需要把图片放在当前位置,不容改变,可以用 \usepackege{float} 宏包的[H]选项。不过如果这样做,出现放不下的问题时需要手工调整。使用格式如下。

1
2
3
4
5
\usepackage{float} 
% ...
\begin{figure}[H]
foo
\end{figure}

特别强调,当表格或者图片占据双栏模板的两栏时(即在\begin{table*}时),这些控制选项就失效了。其他情况请参考 技能提升之Latex控制图片位置

参考文章

通俗解释 DNS

DNS (Domain Name System) 是域名系统的缩写,它作为可以将域名和 IP 地址相互映射的一个分布式数据库。通俗来讲,互联网上每台电脑都会有一个身份证号来标记电脑,然后电脑相互访问时就需要知道这个身份证号才能到达指定的电脑,这个身份证号就是IP地址。但是,如果仅仅是有限的几台电脑,这个方法足够应对了,然而互联网上有无数的电脑,每次访问某台电脑,就需要查询这台电脑的 IP, 显然一个人不可能记住那么多的IP地址。为了方便人的记忆,我们可以为 IP 起一个别名,也就是域名,比如www.baidu.com,同时把IPwww.baidu.com的对应关系保存在/etc/hosts文件中。 这样每次电脑访问这台电脑时就直接访问www.baidu.com, 然后电脑就会去/etc/hosts查询这个域名对应的IP, 然后根据查到的IP访问对应的电脑。 然而,这样做以后,每个人的电脑就会保存不同的hosts文件,同时也需要每次访问新的电脑都要编辑这个hosts文件,世界很大,维护hosts会耽误大量的时间,同时若自己换了电脑,那必然也要带上这个自己习惯的hosts文件到新的电脑。为了解决这个问题,网络上出现了专门同步IP与域名对应关系的分布式服务器(也是一台电脑), 这台电脑就叫做 DNS 服务器。当我们知道了 DNS 服务器的 IP以后,把这个 IP告诉我们自己的电脑,这样每次访问互联网,我们自己的电脑就会向 DNS 服务器发出申请,返回相应域名的 IP地址,然后再通过这个IP访问域名对应的电脑, 于是hosts文件实现了全网同步。但是,随之而来的问题是 DNS 服务器的性能会因不同的设备而有差异,同时不同 DNS 服务器也会因为通信线路和地理位置等造成访问速度不同,我们肯定希望速度越快越好,于是人们就需要选择那些可靠的大厂 DNS 服务器。

提升网络访问速度

随着互联网的发展,全球的电脑越来越多,同一个网站为了更好的展示效果和更强大的功能而链接到多个网站。有时候,我们可以快速打开一个网站,但是它会花相当长的时间来打开完整的网站,这个体验就不是很好了。 事实上,DNS 服务器再快也不会比自己电脑上保存了hosts文件快,似乎问题又回到了最初,但是又不一样。为了提高访问速度,我们可以通过某些软件记录下每次访问过的域名和相应的IP地址,这样第二次以后速度会实现质的飞越。同时,现在的硬盘价格也是相当便宜,我们平时游览的网站通常也是和自己相关领域的有限数目的网站,因此使用软件自动缓存下这些访问过的记录也是一件相当容易的事情,这会给我们网上冲浪带来质的飞越。

全自动安装脚本

如果您使用的是ArchLinux, 同时不想关注细节,请直接保存脚本syndns.sh后,执行sudo chmod +x syndns.sh && ./syndns -i , 即可一键配置好本地dns缓存。

syndns.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#! /bin/sh
#
# Program : syndns.sh
# Version : v1.1
# Date : 2024-11-30 00:52
# Author : fengzhenhua
# Email : fengzhenhua@outlook.com
# CopyRight: Copyright (C) 2022-2025 FengZhenhua(冯振华)
# License : Distributed under terms of the MIT license.
#
# 检测软件依懒, 若未检测到,则自动安装
SYNDNS_DEPEND(){
for VAR in $1 ;do
if [[ "$(pacman -Q |grep $VAR)" = "" ]]; then
sudo pacman -S $VAR
fi
done
}
SYN_EXE="/usr/local/bin/${0%.sh}"
SYN_AUTO="$HOME/.config/autostart/${0%.sh}.desktop"
SYN_SUDO="/etc/sudoers.d/01_$USER"
if [ $# -gt 0 ]; then
if [ $1 == "-i" -o $1 == "-I" ]; then
SYNDNS_DEPEND "inetutils dnsmasq"
sudo cp -f $0 $SYN_EXE
sudo chmod +x $SYN_EXE
if [ ! -e $SYN_AUTO ]; then
sudo touch $SYN_AUTO
cat > $SYN_AUTO <<EOF
[Desktop Entry]
Name=SynDns
TryExec=syndns
Exec=$SYN_EXE
Type=Application
Categories=GNOME;GTK;System;Utility;TerminalEmulator;
StartupNotify=true
X-Desktop-File-Install-Version=0.22
X-GNOME-Autostart-enabled=true
Hidden=false
NoDisplay=false
EOF
sudo sh -c "cat > /etc/dnsmasq.conf" <<EOA
domain-needed
bogus-priv
resolv-file=/etc/resolv.conf
no-poll
interface=lo
listen-address=127.0.0.1
bind-interfaces
no-hosts
addn-hosts=/dev/shm/dnsrecord.txt
cache-size=9999
port=53
EOA
if [ ! -e $SYN_SUDO ]; then
sudo touch $SYN_SUDO
sudo sh -c "cat > $SYN_SUDO" <<EOB
$USER ALL=(ALL) NOPASSWD: /bin/systemctl restart dnsmasq.service, /bin/systemctl start dnsmasq.service
EOB
fi
fi
fi
fi
SYN_REC=$(grep "addn-hosts" /etc/dnsmasq.conf)
SYN_REC=${SYN_REC#*=}
cat /etc/hosts > $SYN_REC
echo "$(hostname -i) localhost:" >> $SYN_REC
sudo systemctl start dnsmasq.service

本脚本全自动配置好了dnsmasq, 但是若想达到自己快速访问自己习惯的网站,请在/etc/hosts文件中加入IP和域名映射,具体操作参见:Linux解决无法访问学术网站的问题

屏蔽广告

  • 建立屏蔽文件存放目录:sudo mkdir /etc/dnsmasq.d
  • 下载anti-Ad广告列表:
    1
    sudo curl -o /etc/dnsmasq.d/anti-ad-for-dnsmasq.conf https://anti-ad.net/anti-ad-for-dnsmasq.conf
  • 修改配置文件/etc/dnsmasq.conf:
    /etc/dnsmasq.conf
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    domain-needed
    bogus-priv
    resolv-file=/etc/resolv.conf
    no-poll
    interface=lo
    listen-address=127.0.0.1
    bind-interfaces
    no-hosts
    addn-hosts=/dev/shm/dnsrecord.txt
    addn-hosts=/etc/dnsmasq.d
    cache-size=9999
    port=53
  • 重启dnsmasq.service服务
    1
    sudo systemctl restart dnsmasq.service

技术细节

Linux 使用 dnsmasq 开启本地 dns 缓存

dnsmasq 是一个轻量组 DHCP 和缓存 DNS 服务器。

1. 安装 dnsmasq

1
sudo pacman -S dnsmasq

2. 配置 dnsmasq

dnsmasq 的主配置文件为/etc/dnsmasq.conf。一些配置 dns 缓存相关参数(更多参数说明见 https://thekelleys.org.uk/dnsmasq/docs/dnsmasq.conf.example/etc/dnsmasq.conf 内说明)

配置文件设置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cat /etc/dnsmasq.conf

domain-needed

port=53

bogus-priv

interface=lo

bind-interfaces

listen-address=127.0.0.1

cache-size=4000

resolv-file=/etc/resolv.dnsmasq

no-poll

参数说明

(1)domain-needed

如果没有域名后缀的请求(即单个主机名的查询)会被忽略,不会被转发到上游 DNS 服务器。防止将无效的主机名查询发送到外部 DNS 服务器。

(2)port

绑定指定端口

(3)bogus-priv

阻止将私有 IP 地址范围的查询结果返回给客户端。如果上游 DNS 服务器返回的结果是私有 IP 地址,dnsmasq 会将其丢弃。防止意外将私有 IP 地址暴露在外部网络。

(4)interface=lo

指定 dnsmasq 仅监听在本地回环接口 lo 上。限制 dnsmasq 只在本机的回环接口上工作,不对外提供 DNS 服务,增加安全性。

(5)bind-interfaces

强制 dnsmasq 只绑定到配置中明确指定的接口(例如 lo)。确保 dnsmasq 只监听指定接口,防止不必要的接口绑定,增强控制和安全性。

(6)listen-address

指定 dnsmasq 应该监听 DNS 查询的 IP 地址。如果使用 dnsmasq 作为本地 DNS 缓存服务,设置为 127.0.0.1。

(7)resolv-file

设置包含上游 DNS 服务器的文件的路径,不打开的话,默认用 /etc/resolv.conf ,也可以直接指定,例如,我们在 /etc 中创建一个名为 resolv.dnsmasq 的文件,其内容如下:

cat /etc/resolv.dnsmasq

nameserver 8.8.8.8

这些配置将使 dnsmasq 能够从 8.8.8.8 查询 DNS 记录并在本地缓存。

(8)cache-size

定义要缓存的最大 DNS 记录数。

(9)no-resolv

dnsmasq不使用 /etc/resolv.conf 或者其他文件,不做上游DNS查询。取消注释此行以防止 dnsmasq 使用 /etc/resolv.conf 文件。

(10)no-poll

禁用 dnsmasq 对 /etc/resolv.dnsmasq 文件的持续轮询检查。提高性能,避免频繁检查该文件的变动。如果不经常修改该文件,这个选项可以避免不必要的文件系统访问。

3. 启用 dnsmasq 服务

1
sudo systemctl enable --now dnsmasq.service

4. 将默认 DNS 设置为 dnsmasq

如果已经取消注释 dnsmasq 配置中的 no-resolv 选项,则无需编辑 /etc/resolv.conf

注释掉所有涉及 nameserver 的行,并写入127.0.0.1到 /etc/resolv.conf,如下示例:

1
2
3
cat /etc/resolv.conf
# nameserver 8.8.8.8
nameserver 127.0.0.1

dnsmasq 性能优化

我们都知道Bind不配合数据库的情况下,经常需要重新载入并读取配置文件,这是造成性能低下的原因。根据这点教训,我们可以考虑不读取/etc/hosts文件。而是另外指定一个在共享内存里的文件,比如/dev/shm/dnsrecord.txt ,这样就不费劲了,又由于内存的非持久性,重启就消失,可以设置为开机启动服务,实现每次开机自动同步/etc/hosts文件到内存中。

1. 配置 dnsmasq

/etc/dnsmasq.conf
1
2
no-hosts
addn-hosts=/dev/shm/dnsrecord.txt

2. 创建同步脚本 syndns.sh

/usr/local/bin/syndns
1
2
3
4
5
6
7
8
9
#! /bin/sh
#
# syndns.sh
# Copyright (C) 2024 Zhen-hua Feng <fengzhenhua@outlook.com>
#
# Distributed under terms of the MIT license.
#
cat /etc/hosts > /dev/shm/dnsrecord.txt
sudo systemctl start dnsmasq.service

3. 提升权限

/etc/sudoers.d/01_feng
1
feng ALL=(ALL) NOPASSWD: /bin/systemctl restart dnsmasq.service, /bin/systemctl start dnsmasq.service

提升启动dnsmasq.service的开启权限后,开机启动服务就不再需要sudo输入密码了,这样做更加合理。

4. 设置开机时启动

~/.config/autostart/syndns.desktop
1
2
3
4
5
6
7
8
9
10
11
[Desktop Entry]
Name=SynDns
TryExec=syndns
Exec=/usr/local/bin/syndns
Type=Application
Categories=GNOME;GTK;System;Utility;TerminalEmulator;
StartupNotify=true
X-Desktop-File-Install-Version=0.22
X-GNOME-Autostart-enabled=true
Hidden=false
NoDisplay=false

由于本人的桌面环境是Gnome, 所以推荐使用此处的ArchLinux配置自启动程序的方法。同时,在尝试使用systemctl方案时并求成功,原因在于systemctl是系统级服务,启动时cat写入内存的文件dnsrecord.txt就属于具备root权限,因此由于cat权限不足而失败。

针对网站提速

将常用网站的域名和IP放置到 /etc/hosts 文件可以缩短主机访问 DNS服务器的时间,前面将这些常用网站添加到内存文件 /dev/shm/dnsrecord.txt 中,这极大的提高了电脑访问的速度,因为即使是固态硬盘,它的读取速度也是与内存无法相比的,而这个文件却占据很小内存,甚至可以忽略不计。但是,在访问某一网站时,由于网站会借助 cdn 等添加一些js组件,而这一部分会零星的占用不少时间去访问 DNS服务器。为了进一步提速,就需要我们将这些后台访问的网址域名也添加到/etc/hosts文件中。方法是:打开 firefox更多工具Web 开发者工具网络, 然后就可以看到后台访问的许多网站,手动把这些域名解析后有可能获取多个IP, 将这些IP使用Ping工具测速后,把最快的IP添加到hosts中。下次访问主网站,速度就飞起了。

另外需要注意的是:firefox设置隐私和安全→取消关闭Firfox时删除Cookie与网站数据. 这样设置后,下次在访问此网站,那些缓存好的图片等就不需要再次下载了,网站只下载那些发生变动的部分,因此这又可以进一步的提升访问速度。

参考文章

科研工作中需要经常访问学术网站,然而有时候却无法访问或速度太慢,以致于论文无法下载。为解决这一问题,本文提出修改/etc/hosts文件的方法。

解决追加内容到 hosts 时无权限问题

1. 使用子命令

1
2
3
4
5
sudo bash -c "cat >> /etc/hosts" << EOF
172.67.9.71 journals.aps.org
104.26.5.132 doi.org
66.22.61.221 iopscience.iop.org
EOF

2. 使用tee命令

1
2
3
4
5
sudo tee -a /etc/hosts > /dev/null <<EOF
172.67.9.71 journals.aps.org
104.26.5.132 doi.org
66.22.61.221 iopscience.iop.org
EOF

Ip 查询

注意:选择上述任意的一个网站,然后输入你要访问的学术网站的域名,查询到对应的IP地址,保存下来。

写入到 hosts

updatehost.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh
#
# Program : updatehost.sh
# Version : v1.1
# Date : 2023-10-08
# Author : fengzhenhua
# Email : fengzhenhua@outlook.com
# CopyRight: Copyright (C) 2022-2025 FengZhenhua(冯振华)
# License : Distributed under terms of the MIT license.
#
OutHost="/etc/hosts"
sudo curl -o $OutHost https://gitlab.com/ineo6/hosts/-/raw/master/next-hosts\?inline\=false
sudo sh -c "cat >> $OutHost" <<EOF

172.67.9.71 journals.aps.org
104.26.5.132 doi.org
66.22.61.221 iopscience.iop.org
104.20.229.70 orcid.org
172.64.146.247 www.researchgate.net
151.101.3.42 arxiv.org
EOF
sudo systemctl restart NetworkManager

Windows下修改hosts

  • 打开文本编辑器: 在管理员权限下打开你选择的文本编辑器。
  • 打开hosts文件: 在文本编辑器中,选择文件打开,找到的hosts文件
    C:\Windows\System32\drivers\etc\hosts
  • 编辑hosts文件: 在hosts文件的最后一行,添加你需要的域名和对应的IP地址。例如,你想将
    www.example.com指向本地的127.0.0.1,那么可以在hosts文件中添加以下内容:
    1
    127.0.0.1       www.example.com
    每个映射关系应该占据一行,IP地址和域名之间使用制表符或空格进行分隔。
  • 保存文件: 在编辑完成后,保存hosts文件。
  • 刷新DNS缓存
    • 打开命令提示符: 在开始菜单中搜索“命令提示符”,并以管理员权限打开。
    • 执行命令: 在命令提示符中输入以下命令,并按下回车键:
      1
      ipconfig/flushdns

参考文章

ArchLinux安装教程Sudo-ArchWiki中都默认建立了wheel组,并且赋予其sudo权限,这个操作就不是太安全了,因此在安装系统时您应当建立自己的组,而不是使用网上所统一使用的wheel,所以本文就来更正这个错误。

查看本机建立的组

1
2
3
groups
>
wheel yourname

建立自己的组并将当前帐号移到自己的组

1
2
sudo groupadd yourgrp
sudo usermod -aG yourgrp yourname

删除 wheel 组

1
sudo groupdel wheel

注意:删除wheel后,需要修改/etc/sudoers文件,将其中的wheel全部替换成yourgrp,这样您的yourgrp才能具备sudo的权限。

参考文章

每个人都知道 PID,究竟什么是 PID?为什么你想要 PID?你打算用 PID 做什么?你脑子里有同样的问题吗?如果是这样,你就找对地方了解这些细节了。

我们查询 PID 主要是用来杀死一个没有响应的程序,它类似于 Windows 任务管理器一样。 Linux GUI 也提供相同的功能,但 CLI 是执行 kill 操作的有效方法。

什么是进程 ID?

PID 代表进程标识号process identification,它在大多数操作系统内核(如 Linux、Unix、macOS 和 Windows)中使用。它是在操作系统中创建时自动分配给每个进程的唯一标识号。一个进程是一个正在运行的程序实例。

除了 init 进程外其他所有的进程 ID 每次都会改变,因为 init 始终是系统上的第一个进程,并且是所有其他进程的父进程。它的 PID 是 1。

PID 默认的最大值是 32768。可以在你的系统上运行 cat /proc/sys/kernel/pid_max 来验证。在 32 位系统上,32768 是最大值,但是我们可以在 64 位系统上将其设置为最大 222(约 4 百万)内的任何值。

你可能会问,为什么我们需要这么多的 PID?因为我们不能立即重用 PID,这就是为什么。另外为了防止可能的错误。

系统正在运行的进程的 PID 可以通过使用 pidofpgreppspstree 命令找到。

方法 1:使用 pidof 命令

pidof 用于查找正在运行的程序的进程 ID。它在标准输出上打印这些 id。为了演示,我们将在 Debian 9(stretch)系统中找出 Apache2 的进程 ID。

1
2
pidof apache2
3754 2594 2365 2364 2363 2362 2361

从上面的输出中,你可能会遇到难以识别进程 ID 的问题,因为它通过进程名称显示了所有的 PID(包括父进程和子进程)。因此,我们需要找出父 PID(PPID),这是我们要查找的。它可能是第一个数字。在本例中,它是 3754,并按降序排列。

方法 2:使用 pgrep 命令

pgrep 遍历当前正在运行的进程,并将符合选择条件的进程 ID 列到标准输出中。

1
2
3
4
5
6
7
8
pgrep apache2
2361
2362
2363
2364
2365
2594
3754

这也与上面的输出类似,但是它将结果从小到大排序,这清楚地说明父 PID 是最后一个。在本例中,它是 3754

注意: 如果你有多个进程的进程 ID,那么在使用 pidofpgrep 识别父进程 ID 时就可能不会很顺利。

方法 3:使用 pstree 命令

pstree 将运行的进程显示为一棵树。树的根是某个 pid,如果省略了 pid 参数,那么就是 init。如果在 pstree 命令中指定了用户名,则显示相应用户拥有的所有进程。

pstree 会将相同的分支放在方括号中,并添加重复计数的前缀来可视化地合并到一起。

1
2
3
4
5
6
7
pstree -p | grep "apache2"
|- apache2(3754) -|-apache2(2361)
| |-apache2(2362)
| |-apache2(2363)
| |-apache2(2364)
| |-apache2(2365)
| `-apache2(2594)

要单独获取父进程,请使用以下格式。

1
2
pstree -p | grep "apache2" | head -1
|- apache2(3754) -|-apache2(2361)

pstree 命令非常简单,因为它分别隔离了父进程和子进程,但这在使用 pidofpgrep 时命令不容易做到。

方法 4:使用 ps 命令

ps 显示活动进程的选择信息。它显示进程 ID(pid=PID)、与进程关联的终端(tname=TTY)、以 [DD-]hh:mm:ss 格式(time=TIME)显示的累计 CPU 时间、以及执行名(ucmd = CMD)。输出默认是未排序的。

1
2
3
4
5
6
7
8
9
ps aux | grep "apache2"
www-data 2361 0.0 0.4 302652 9732 ? S 06:25 0:00 /usr/sbin/apache2 -k start
www-data 2362 0.0 0.4 302652 9732 ? S 06:25 0:00 /usr/sbin/apache2 -k start
www-data 2363 0.0 0.4 302652 9732 ? S 06:25 0:00 /usr/sbin/apache2 -k start
www-data 2364 0.0 0.4 302652 9732 ? S 06:25 0:00 /usr/sbin/apache2 -k start
www-data 2365 0.0 0.4 302652 8400 ? S 06:25 0:00 /usr/sbin/apache2 -k start
www-data 2594 0.0 0.4 302652 8400 ? S 06:55 0:00 /usr/sbin/apache2 -k start
root 3754 0.0 1.4 302580 29324 ? Ss Dec11 0:23 /usr/sbin/apache2 -k start
root 5648 0.0 0.0 12784 940 pts/0 S+ 21:32 0:00 grep apache2

从上面的输出中,我们可以根据进程的启动日期轻松地识别父进程 ID(PPID)。在此例中,apache2 启动于 Dec 11,它是父进程,其他的是子进程。apache2 的 PID 是 3754

引用

当设计的脚本需要调用某系统命令时,使用sudo后会提示输入密码,在自己明确自己在干什么时,这很不方便,会极大的降低效率。为解决这一问题,本文给出提升普通用户权限的方法。

sudo 的权限控制

sudo的权限控制位于配置文件/etc/sudoers中,如果想要控制某个用户(或某个组用户)只能执行root权限中的一部分命令, 或者允许某些用户使用sudo时不需要输入密码.

配置文件设置格式

一般格式 root ALL=(ALL) ALL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
授权用户/组 主机  =[(切换到哪些用户或组)] [是否需要输入密码验证] 命令1,命令2,...
字段1 字段2 =[(字段3)] [字段4] 字段5

注意:凡是[ ]中的内容, 都能省略; 命令和命令之间用,号分隔;

字段1:
不以%号开头的表示"将要授权的用户" root
以%号开头的表示"将要授权的组" %wheel

字段2:表示允许登录的主机
ALL表示所有; 如果该字段不为ALL,表示授权用户只能在某些机器上登录本服务器来执行sudo命令
eg:jack mycomputer=/usr/sbin/reboot,/usr/sbin/shutdown
表示: 普通用户jack在主机(或主机组)mycomputer上, 可以通过sudo执行reboot和shutdown两个命令

字段3:
如果省略, 相当于(root:root),表示可以通过sudo提权到root; 如果为(ALL)或者(ALL:ALL), 表示能够提权到(任意用户:任意用户组)。
注意:如果没省略,必须使用( )双括号包含起来

字段4:
可能取值是NOPASSWD:。请注意NOPASSWD后面带有冒号:。表示执行sudo时可以不需要输入密码
eg:lucy ALL=(ALL) NOPASSWD: /bin/useradd
表示: 普通用户lucy可以在任何主机上, 通过sudo执行/bin/useradd命令, 并且不需要输入密码
比如:hyc ALL=(ALL:ALL) NOPASSWD:ALL
字段5:授权给用户的操作
逗号分开一系列命令或者ALL表示允许所有操作

高阶用法

1
2
3
4
5
6
7
8
9
10
11
12
如果写成这样:
papi ALL=(root) NOPASSWD: /bin/chown,/usr/sbin/useradd
表示: 用户papi能在所有可能出现的主机上, 提权到root下执行/bin/chown, 不必输入密码; 但运行/usr/sbin/useradd 命令时需要密码.

注意:因为NOPASSWD:只影响了其后的第一个命令: 命令1.
在具有sudo操作的用户下, 执行sudo -l可以查看到该用户被允许和被禁止运行的命令


通配符和取消命令
eg:papi ALL=/usr/sbin/*,/sbin/*,!/usr/sbin/fdisk
命令前面加上!号表示取消该命令
表示意思:用户papi在所有可能出现的主机上, 能够运行目录/usr/sbin和/sbin下所有的程序, 但fdisk除外.

系统文档推荐的做法是,修改/etc/sudoers.d 目录下的文件通过此方法修改sudoers ,需要在/etc/sudoers文件的最后行,加上

1
@includedir /etc/sudoers.d

注意: 这里的指令@includedir是一个整体, 具体参考 sudoers.5

任何在/etc/sudoers.d/目录下,不以~号结尾的文件和不包含.号的文件,都会被解析成/etc/sudoers的内容。 比如我新创建的用户 hyc 想要实现root权限,可在/etc/sudoers.d/下新建一个文件01_hyc 文件,输入以下语句hyc ALL=(ALL:ALL) NOPASSWD:ALL 。 此时新建的用户就能获取root权限。

参考文章

Linux 是开源系统,所以无法指望它能像 Windows 或 Mac 系统一样面面俱到。在使用过程中,自定义一些配置也是经常遇到的。本文记录: 如何修复 Gnome 菜单中有的启动器对应的图标无法正常显示的问题。

系统中存在相关图标的情况

图标的默认安装位置为/usr/share/icons/, 例如 ArchLinux (2024-11-28)系统中,Open JDK java的图标就无法正常显示,查询启动器文件

/usr/share/applications/java-java-openjdk.desktop
1
2
3
4
5
6
7
8
9
10
11
12
[Desktop Entry]
Name=OpenJDK Java 23 Runtime
Name[fi]=OpenJDK Java 23 - ajonaikainen ympäristö
Comment=OpenJDK Java 23 Runtime
Comment[fi]=OpenJDK Java 23 - ajonaikainen ympäristö
Keywords=java;runtime
Exec=/usr/lib/jvm/java-23-openjdk/bin/java -jar
Terminal=false
Type=Application
Icon=java23-openjdk
MimeType=application/x-java-archive;application/java-archive;application/x-jar;
NoDisplay=true

既然其图标无法正常显示,则表明系统中并没有安装java23-openjdk图标。于是查询系统中安装的相关图标:

1
2
3
4
5
ls -R /usr/share/icons/ |grep java
>
java-openjdk
java-openjdk
java-openjdk

这表明系统中安装的图标为java-openjdk, 因此修改java-java-openjdk.desktop文件中的Icon

1
Icon=java-openjdk

如何指定图标路径

默认情况下,应用程序应该按照以下顺序查找:$HOME/.icons(为了向后兼容性),$XDG_DATA_DIRS/icons/usr/share/pixmaps。应用程序可以进一步将自己的图标目录添加到此列表中,用户可以以应用程序/桌面特定的方式扩展或更改列表。在这些目录中,每个主题都存储为子目录。通过具有相同名称的子目录,可以将主题分布在多个基本目录中。这样,用户可以扩展和覆盖系统主题。 为了给第三方应用程序提供安装其图标的位置,始终应存在一个名为hicolor的主题。hicolor主题的数据可在以下网址下载:http://www.freedesktop.org/software/icon-theme。实现必须在当前主题中找不到图标时查找hicolor主题。 每个主题都存储为基本目录的子目录。主题的内部名称是子目录的名称,尽管由主题指定的用户可见名称可能不同。因此,主题名称区分大小写,并且仅限于ASCII字符。主题名称也不能包含逗号或空格。 在至少一个主题目录中,必须存在一个名为index.theme的文件,描述主题的属性。按顺序搜索基本目录时,使用找到的第一个index.theme文件。该文件描述了主题的一般属性。 在主题目录中还有一组包含图像文件的子目录。每个目录包含为特定名义图标大小设计的图标,如index.theme文件所述。子目录允许多级深入,例如主题hicolor中的子目录48x48/apps将位于$basedir/hicolor/48x48/apps。 图像文件必须是以下类型之一:PNGXPMSVG,并且扩展名必须为.png.xpm.svg(小写)。对于SVG文件的支持是可选的。不支持SVG的实现应该忽略任何.svg文件。除此之外,对于每个文件可能还有一个包含额外图标数据的附加文件。它的基本名称应与图像文件相同,扩展名为.icon。例如,如果图标文件名为mime_source_c.png,则相应的文件名将为mime_source_c.icon。 完整的规格比这个要详尽得多,但关键是:有一些设定的目录,你只需将图标放入其中,桌面就能找到它们。哪种最适合你取决于你的问题和耐心.

注意:有的文章中说“如果你把图标放在/usr/share/icons/(系统范围)或者你的个人目录~/.icons中,那么在.desktop文件中只需要使用图标文件名而不需要扩展名”。而我的系统中有一个应用Singular, 系统默认将其图标放置在了/usr/share/icons/Singular.png, 但是在文件/usr/share/applications/Singular.desktop中直接写为Icon=Singular,而系统并没有识别出来,于是修改为绝对路径Icon=/usr/share/icons/Singular.png后成功识别。修改完图标后,运行 gtk-update-icon-cache -f -t <图标主题路径>,系统会立刻检测到该图标。

参考文章

1.最初投稿Coverletter

DearEditors:
We would like to submit the enclosed manuscript entitled“Paper Title”, which we wish to be considered forpublication in “Journal Name”. No conflict of interestexits in the submission of this manuscript, and manuscript isapproved by all authors for publication. I would like to declare onbehalf of my co-authors that the work described was original researchthat has not been published previously, and not under considerationfor publication elsewhere, in whole or in part. All the authorslisted have approved the manuscript that is enclosed.

In thiswork, we evaluated …… (简要介绍一下论文的创新性).I hope this paper is suitable for “Journal Name”.

Thefollowing is a list of possible reviewers for your consideration:

1)Name A E-mail: ××××@××××

2)Name B E-mail: ××××@××××

Wedeeply appreciate your consideration of our manuscript, and we lookforward to receiving comments from the reviewers. If you have anyqueries, please don’t hesitate to contact me at the addressbelow.

Thank you and best regards.

Yourssincerely,
××××××
Correspondingauthor: 
Name: ×××
E-mail: ××××@××××

2.催稿信

DearProf. ×××:

Sorry for disturbing you. I am notsure if it is the right time to contact you to inquire about thestatus of my submitted manuscript titled “Paper Title”.(ID: 文章稿号),although the status of “With Editor” has been lasting formore than two months, since submitted to journal three months ago. Iam just wondering that my manuscript has been sent to reviewers ornot?

I would be greatly appreciated if you could spend some ofyour time check the status for us. I am very pleased to hear from youon the reviewer’s comments.

Thank you very much for yourconsideration.

Best regards! 
Yourssincerely,
××××××
Correspondingauthor: 
Name: ×××
E-mail: ××××@××××

3.修改稿Coverletter

DearDr/ Prof..(写上负责你文章编辑的姓名,显得尊重,因为第一次的投稿不知道具体负责的编辑,只能用通用的Editors):

Onbehalf of my co-authors, we thank you very much for giving us anopportunity to revise our manuscript, we appreciate editor andreviewers very much for their positive and constructive comments andsuggestions on our manuscript entitled “Paper Title”.(ID: 文章稿号).

Wehave studied reviewer’s comments carefully and have maderevision which marked in red in the paper. We have tried our best torevise our manuscript according to the comments. Attached please findthe revised version, which we would like to submit for your kindconsideration.

We would like to express our great appreciation toyou and reviewers for comments on our paper. Looking forward tohearing from you.
Thank you and best regards.

Yourssincerely,
××××××
Correspondingauthor:
Name: ×××
E-mail: ××××@××××

4.修改稿回答审稿人意见(最重要的部分)

Listof Responses
Dear Editors and Reviewers:
Thank you for yourletter and for the reviewers’ comments concerning ourmanuscript entitled “Paper Title” (ID: 文章稿号).Those comments are all valuable and very helpful for revising andimproving our paper, as well as the important guiding significance toour researches. We have studied comments carefully and have madecorrection which we hope meet with approval. Revised portion aremarked in red in the paper. The main corrections in the paper and theresponds to the reviewer’s comments are as flowing:

Respondsto the reviewer’s comments:

Reviewer #1: 
1. Response tocomment: (……简要列出意见……)
Response:××××××
2. Response to comment:(……简要列出意见……)
Response:××××××
。。。。。。逐条意见回答,切忌一定不能有遗漏

针对不同的问题有下列几个礼貌术语可适当用用:
Weare very sorry for our negligence of ……...
We arevery sorry for our incorrect writing ……...
It isreally true as Reviewer suggested that……
We havemade correction according to the Reviewer’s comments.
Wehave re-written this part according to the Reviewer’ssuggestion
As Reviewer suggested that……
Consideringthe Reviewer’s suggestion, we have ……

最后特意感谢一下这个审稿人的意见:
Specialthanks to you for your good comments. 

Reviewer #2:

同上述

Reviewer#3:
××××××
Other changes:
1. Line 60-61, the statements of “……”were corrected as “…………”
2.Line 107, “……” was added 
3. Line 129,“……” was deleted
××××××

Wetried our best to improve the manuscript and made some changes in themanuscript. These changes will not influence the content andframework of the paper. And here we did not list the changes butmarked in red in revised paper.

We appreciate forEditors/Reviewers’ warm work earnestly, and hope that thecorrection will meet with approval.

Once again, thank you verymuch for your comments and suggestions.

5.文章接收后感谢信(根据需要感谢负责文章的编辑或主编)

DearProf. ××××××:

Thanks very muchfor your kind work and consideration on publication of our paper. Onbehalf of my co-authors, we would like to express our greatappreciation to editor and reviewers.

Thank you and bestregards.

Yours sincerely,
××××××
Correspondingauthor:
Name: ×××
E-mail: ××××@××××

6.询问校稿信件

Dear×××:

Sorry for disturbing you. I am not sure ifit is the right time to contact you to inquire about the status ofour accepted manuscript titled “Paper Title” (ID: 文章稿号),since the copyright agreement for publication has been sent to youtwo months ago. I am just wondering that how long I can receive theproof of our manuscript from you?
I would be greatly appreciatedif you could spend some of your time for a reply. I am very pleasedto hear from you.

Thank you very much for yourconsideration.

Yours sincerely,
××××××
Correspondingauthor:
Name: ×××
E-mail: ××××@××××

7.文章校稿信件

DearMr. ×××:

Thanks very much for your kind letterabout the proof of our paper titled “Paper Title” (ID:文章稿号)for publication in “Journal Name”. We have finished theproof reading and checking carefully, and some corrections about theproof and the answers to the queries are provided below.

Corrections:
1. In ****** should be **** (Page ***, Rightcolumn, line***)
2. In **** the “*****” should be“****” (Page ****, Right column, line****)

Answers for“author queries”:
1. *********************.
2.**********************
3. **********************

We greatlyappreciate the efficient, professional and rapid processing of ourpaper by your team. If there is anything else we should do, please donot hesitate to let us know.

Thank you and best regards.
Yourssincerely,
××××××
Correspondingauthor:
Name: ×××
E-mail: ××××@××××

引用

全文引用自:SCI投稿7个阶段的邮件模板

在使用 Linux 办公的过程中不可避免的要手动安装一些自定义的软件,或者在仓库中无法找到的软件。此时在菜单中安装一个程序启动器就显得尤为必要,在此之前制作.desktop文件, 请参考文章:Linux桌面创建启动器

安装程序图标

如果你已经获得了对应程序的icons, 那么相当于获得了一个含有图标的目录:

ls ./icons/hicolor
1
2
3
4
5
6
7
8
9
10
11
16x16     48x48       192x192@2
16x16@2 48x48@2 256x256
20x20 64x64 256x256@2
22x22 64x64@2 384x384
22x22@2 72x72 512x512
24x24 72x72@2 512x512@2
24x24@2 96x96 icon-theme.cache
32x32 96x96@2 index.theme
32x32@2 128x128 scalable
36x36 128x128@2 symbolic
36x36@2 192x192

此时需要递归的把各目录中的图标复制到系统的相应图标目录中,只需要cp命令添加-r选项, 即

1
2
3
sudo cp -r ./icons  /usr/share/icons/
sudo gtk-update-icon-cache /usr/share/icons/hicolor
sudo update-mime-datebase -V /usr/share/mime

其中hicolor是当前的主题,不同的机器使用不同的主题。

安装 .desktop 文件

命令安装

1
xdg-desktop-menu install path/to/file.desktop

手动安装

1
2
sudo cp path/to/file.desktop /usr/share/applications/file.desktop
sudo xdg-desktop-menu forceupdate

例子: 安装 Zlibrary

  • 下载Zlibrary For any linux
  • 解压后安装到/opt/Z-Library
    1
    2
    unar zlibrary-setup-latest.gz 
    sudo cp -r zlibrary-setup-latest /opt/Z-Library
  • 下载Zlibrary For debian/ubuntu, 以获取icons.desktop
    1
    2
    3
    4
    5
    6
    7
    8
    unar zlibrary-setup-latest.deb
    cd zlibrary-setup-latest
    unar data.tar.xz
    cd data/usr/share/icons
    sudo cp ./usr/share/icons/hicolor /usr/share/icons/hicolor
    sudo cp ./usr/share/applications/z-library.desktop /usr/share/applications/z-library.desktop
    sudo gtk-update-icon-cache /usr/share/icons/hicolor
    sudo xdg-desktop-menu forceupdate

参考文章