我在Oracle Linux上。
[root@ol76 systemd]# cat /etc/*release*
Oracle Linux Server release 7.6
NAME="Oracle Linux Server"
VERSION="7.6"
ID="ol"
VARIANT="Server"
VARIANT_ID="server"
VERSION_ID="7.6"
PRETTY_NAME="Oracle Linux Server 7.6"
ANSI_COLOR=
确定操作系统版本的常用方法似乎是查看
/etc/*-release file
*这将是操作系统的特定版本所属的家庭。但在OEL系统中,存在以下文件,它们似乎都返回了有效的版本,在这种情况下,是否有确定确定OS发行版本详细信息的方法:
cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.8 (Tikanga)
cat /etc/enterprise-release
Enterprise Linux Enterprise Linux Server release 5.8 (Carthage)
ca
我有一个运行在linux上的c程序。在关闭终端后,我在后台应用了一些命令来运行进程。
1. Pause program with `Ctrl-Z`,
2. Pull it into the background with `bg`
3. Then disown it.
现在我想看看这个仍在运行的程序的控制台输出。
在linux中怎么做?