when I try to install the linux-nagios-agent on my linux server I get the error below:
/home/lost+found/linux-nrpe-agent # ./fullinstall
/etc/os-release: line 2: syntax error near unexpected token `('
Below is the content of the os-release
# cat /etc/os-release
NAME=openSUSE
VERSION = 12.1 (Asparagus)
VERSION_ID="12.1"
PRETTY_NAME="openSUSE 12.1 (Asparagus) (x86_64)"
ID=opensuse
Any idea what is causing the problem?
Try to double quote the VERSION string, here's how it looks in a newer version:
# cat /etc/os-release
NAME=openSUSE
VERSION="13.2 (Harlequin)"
VERSION_ID="13.2"
PRETTY_NAME="openSUSE 13.2 (Harlequin) (x86_64)"
ID=opensuse
ANSI_COLOR="0;32"
CPE_NAME="cpe:/o:opensuse:opensuse:13.2"
BUG_REPORT_URL="https://bugs.opensuse.org"
HOME_URL="https://opensuse.org/"
ID_LIKE="suse"
Related
When running the command theHarvester -d microsoft.com -l 200 -b baidu , I do not get successful result instead I get the error shared in the screenshot.
Error
Note: I have updated my system to the latest version along with dist-upgrade as well.
Operating System Details:
PRETTY_NAME="Parrot OS 5.1 (Electro Ara)"
NAME="Parrot OS"
VERSION_ID="5.1"
VERSION="5.1 (Electro Ara)"
VERSION_CODENAME=ara
ID=parrot
ID_LIKE=debian
HOME_URL="https://www.parrotsec.org/"
SUPPORT_URL="https://community.parrotsec.org/"
BUG_REPORT_URL="https://community.parrotsec.org/"
This is the whole command with error:
Whole Page
I am trying to run the command:
mongod --storageEngine wiredTiger --dbpath data --logpath logs/mongo.log
in a linux server but it gives me the error
cannot execute binary file: Exec format error
when I try to see the dependences of the file mongod with readelf -d it gives too many errors:
readelf: Warning: The e_shentsize field in the ELF header is larger than the size of an ELF section header
readelf: Error: Reading 0x9c00000 bytes extends past end of file for section headers
I didn't find any information about this error
The problem was on linux versions I was working with mongodb 32bit in my linux server 64bit
Sles 11 SP 4
syslog-ng-2.0.9-27.34.39.2 - does threaded() even work on this version?
I'm trying to enable multithreading but running into a syntax error when adding the threaded() into the options {} stanza .. Line 16 is the threaded() .. I've tried a few things but nothing is working. Any advice would help? Thank You ~ Sean
=========== syslog-ng.conf ==================
options {
create_dirs(yes);
keep_hostname(yes);
log_fetch_limit(100);
flush_lines(100);
use_dns(no);
threaded(yes);
};
============== error ==============
Error parsing main, syntax error, unexpected LL_IDENTIFIER, expecting '}' in /opt/syslog-ng/etc/syslog-ng.conf at line 16, column 2:
threaded();
^^^^^^^^
Your syslog-ng version is too old, multithreading was introduced around version 3.3. You can find a list of newer packages at the syslog-ng website, and detailed instructions on how to install recent syslog-ng version on SLES.
Regards,
Robert
1: 1.2738 - G logloss: 1.1181QXcbConnection: Could not connect to display
fish: Job 1, “python main.py 64 64 --backend="tensorflow"” terminated by signal SIGABRT (Abort)
I am running the code on aws ubuntu 16.04 machine. I installed qtbase5-dev referring to this. But it still persists. Any ideas?
I have Hadoop 2.7.2 installed on Ubuntu 16.04. When I run the command:
start-yarn.sh
It gives the following output:
starting yarn daemons
/usr/local/hadoop-2.7.2/etc/hadoop/yarn-env.sh: line 122: rt: command not found
starting resourcemanager, logging to /usr/local/hadoop-2.7.2/logs/yarn-hduser-resourcemanager-brij-Compaq-15-Notebook-PC.out
/usr/local/hadoop-2.7.2/etc/hadoop/yarn-env.sh: line 122: rt: command not found
localhost: /usr/local/hadoop-2.7.2/etc/hadoop/yarn-env.sh: line 122: rt: command not found
localhost: starting nodemanager, logging to /usr/local/hadoop-2.7.2/logs/yarn-hduser-nodemanager-brij-Compaq-15-Notebook-PC.out
localhost: /usr/local/hadoop-2.7.2/etc/hadoop/yarn-env.sh: line 122: rt: command not found
I am just curious about the last line that is
yarn-env.sh
: command not found.
Should I be concerned? Or have I done anything wrong which resulted in this error?
Sorry, i have figured out my mistake. I had replaced export by rt in
bashrc
by mistake. I have corrected it and now its working