Questions tagged [freebsd]

This tag should be used for question pertaining specifically to the FreeBSD operating system. In keeping with the intent of Stack Overflow, this is limited to programming, not such things as use, installation, configuration, or maintenance.

Such questions generally belong on Super User if related to personal/workstation use, or on Server Fault if related to use as a server.

See Also

2006 questions
0
votes
0 answers

gitlab - sidekiq wont work correctly

1 -2 hours ago i tried to install gitlab on my FreeBSD Dedicated-Server. Until i done i checked if all is running with this command: sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production I got the following output: Checking GitLab Shell…
user7595545
0
votes
1 answer

It is possible to run SonarQube 6.2 on 512ram VPS

I'm trying to run SonarQube 6.2 on VPS but it has only 512mb ram (recommended to use SonarQube is 1gb memory) While I start SonarQube I exceed ram limit to above 1gb ram. My VPS spec: FreeBSD 10.3-STABLE hw.machine: amd64 hw.model: Intel(R)…
Hype
  • 1,039
  • 1
  • 10
  • 27
0
votes
5 answers

Using a command in echo gives a different result

I am running the following commands on FreeBSD: $ cat filename | tr '\t' '\n' #Output DOCS : ON NLS : ON RCSI : ON $ echo `cat filename | tr '\t' '\n'` #Output DOCS : ON NLS : ON RCSI : ON Why is echo not displaying…
0
votes
2 answers

freebsd open source kernel

I am beginner. I want install freebsd on VM and test open source world! I want to write a small function and to put it into kernel of OS, and then I want to use it in another program as a system function. I just installed freebsd11 on VM. I know a…
user7194905
  • 217
  • 2
  • 9
0
votes
5 answers

Selenium - Unable to find a free port

I'm running an app that depends on selenium on FreeBSD server. During the startup I've got the exception: Caused by: java.lang.RuntimeException: Unable to find a free port at…
luke
  • 3,531
  • 1
  • 26
  • 46
0
votes
0 answers

getifaddrs heap-buffer-overflow in 32 bit app compiled from a 64 bit BSD system

I'm facing an odd issue while debugging my program with Clang's AddressSanitizer. The exact same code works on another 64 bit system but gives a heap-buffer-overflow error on the other. Both machines run the same operating system (BSD 10 64 bit)…
Giuseppe P.
  • 48
  • 2
  • 6
0
votes
1 answer

Is there a working rc-script for Celery on FreeBSD?

I have hacked together an rc script for celeryd on FreeBSD, but I can't help but think that there must be a better way. celeryd does not daemonize itself, and it seems to have a hard time responding to sigterm as well, so it might be complicated to…
Chris R
  • 17,546
  • 23
  • 105
  • 172
0
votes
1 answer

Restore IPython 5.1 terminal colors to 3.x

Today I upgraded my IPython installation from 3.2.3 to 5.1 via the FreeBSD ports system. If it matters, I'm using Python 3.6. The new colors used in the terminal are ugly in my eyes. (I'm using the urxvt terminal in transparent mode.) How do I…
Roland Smith
  • 42,427
  • 3
  • 64
  • 94
0
votes
1 answer

GraphicsMagick installation error on FreeBSD

When trying to install Graphicsmagick binaries to FreeBSD using sudo pkg install GraphicsMagick via SSH shell, I get this error message: /usr/local/lib/libpkg.so.3: Undefined symbol "openat" What is wrong?
Igor P.
  • 1,407
  • 2
  • 20
  • 34
0
votes
1 answer

Why isn't chdir happening for this rc.d script?

I've hit a wall trying to understand why the ${name}_chdir variable is not working for me. Finally, after letting my script run with -xv, I see that the cd command is not even being run in my case. Here is my script: #!/bin/sh set -xv exec…
papiro
  • 2,158
  • 1
  • 20
  • 29
0
votes
1 answer

Web GUI for python scripts

Lets say I have some scripts that I run on FreeBSD 11 (python or SH), they take some arguments, etc and return some metrics or console output messages, is it possible to write a Web GUI to provide a front-end for those scripts? Some way that it…
Dotty
  • 45
  • 1
  • 10
0
votes
2 answers

upgrading port php55 to php56 - conflict with non-existing helpers

I have a freebsd system on which I usually manage ports with portmaster. As php55 was EOL'ed in July 2016, I upgraded php55 to php56 with portmaster -o /usr/ports/lang/php56 php5-5.5.24. Worked like a charm. When updating ports later on (portmaster…
patmin
  • 117
  • 1
  • 10
0
votes
1 answer

Zabbix userparameter with multiple values doesn't work

I am trying to make Zabbix item workable on FreeBSD for gathering info from SQUID. I have the next UserParameter: UserParameter=data.sclient[*], printf "GET cache_object://localhost/purgeng/$2 HTTP/1.0\nAccept */*\n\n" | for i in $(echo "$1" | tr…
user54
  • 573
  • 2
  • 7
  • 22
0
votes
1 answer

FreeBSD. Django-shell permission denied

I am trying to debug some application using Python 2.7.9 and Django 1.10 on FreeBSD. Generally speaking I have two users with equal rights and permission but when I run django-shell using first user, and execute my script in the shell everything…
Vitalii
  • 13
  • 2
0
votes
1 answer

SO_REUSEPORT on macOS with libuv

the SO_REUSEPORT option not works on macOS with libuv. uv_loop_init uv_tcp_init_ex uv_fileno // get fd int option_value = 1; setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &option_value, sizeof (int) uv_tcp_bind uv_thread_create 4 I see 4 same address and…
whisper
  • 143
  • 2
  • 9
1 2 3
99
100