web-dev-qa-db-ja.com

syslogは存在しません!

14.04を使用していますが、syslogがありません。

私はLinuxの新しいユーザーであり、長年Windowsユーザーです。私がtail syslogを試してみると、それは何ですか:

henrique@henrique:/var/log$ tail -f /var/log/syslog
tail: couldn't open “/var/log/syslog” for reading: File or directory not found

Ubuntuのインストールでエラーが発生しましたか?それはsyslogを「インストール」できる方法ですか?

編集:

cat /etc/rsyslog.conf

#  /etc/rsyslog.conf    Configuration file for rsyslog.
#
#           For more information see
#           /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
#
#  Default logging rules can be found in /etc/rsyslog.d/50-default.conf


#################
#### MODULES ####
#################

$ModLoad imuxsock # provides support for local system logging
$ModLoad imklog   # provides kernel logging support
#$ModLoad immark  # provides --MARK-- message capability

# provides UDP syslog reception
#$ModLoad imudp
#$UDPServerRun 514

# provides TCP syslog reception
#$ModLoad imtcp
#$InputTCPServerRun 514

# Enable non-kernel facility klog messages
$KLogPermitNonKernelFacility on

###########################
#### GLOBAL DIRECTIVES ####
###########################

#
# Use traditional timestamp format.
# To enable high precision timestamps, comment out the following line.
#
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat

# Filter duplicated messages
$RepeatedMsgReduction on

#
# Set the default permissions for all log files.
#
$FileOwner syslog
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022
$PrivDropToUser syslog
$PrivDropToGroup syslog

#
# Where to place spool and state files
#
$WorkDirectory /var/spool/rsyslog

#
# Include all config files in /etc/rsyslog.d/
#
$IncludeConfig /etc/rsyslog.d/*.conf

apt-cache policy inetutils-syslogの出力

inetutils-syslogd:
  Installed: (nenhum)
  Candidate: 2:1.9.2-1
  Version table:
     2:1.9.2-1 0
     500 http://br.archive.ubuntu.com/ubuntu/ trusty/universe AMD64 Packages

apt-cache policy rsyslogの出力

rsyslog:
  Installed: (none)
  Candidate: 7.4.4-1ubuntu2.6
  Version table:
     7.4.4-1ubuntu2.6 0
     500 http://br.archive.ubuntu.com/ubuntu/ trusty-updates/main AMD64 Packages
        100 /var/lib/dpkg/status
     7.4.4-1ubuntu2.3 0
        500 http://security.ubuntu.com/ubuntu/ trusty-security/main AMD64 Packages
     7.4.4-1ubuntu2 0
        500 http://br.archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages

Sudo service rsyslog statusの出力

rsyslog stop/waiting
10
Henrique Ramos

apt-cache policy rsyslogの出力には、rsyslogがシステムにインストールされていないため、

Sudo apt-get install rsyslog
6
A.B.