Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
966 views

Is there any git repository with official daily updated Gentoo portage?

RSync is traditionally used to update Gentoo portage tree. But it's somewhat slow when dealing with a large number of files. So, I want to try to replace RSync with Git. I know that Funtoo have ...
6
votes
4answers
461 views

apc_store isn't working between requests

$bar = 'BAR'; apc_store('foo', $bar); var_dump(apc_fetch('foo')); Within one request this work. Now If i try to do a var_dump(apc_fetch('foo')); on another request it prints: bool(false) Any ...
4
votes
3answers
86 views

Linking multiple C source files

I'm on gentoo linux with GCC 4.4.5 installed. I can compile and link such program without any errors using gcc main.c -o main, and the command ./main returns result correctly. [main.c] #include ...
4
votes
1answer
48 views

python: How many write access needed to write XML

I am writing a python module that writes data into an XML file. The piece of code that handles the write is: from xml.dom.minidom import Document #using DOMXml main = Document() #create an XML ...
3
votes
0answers
358 views

SVN authentication to Active Directory using SASL and OpenLDAP

I have been following all of the guides I found online to get a working svnserve + SASL + OpenLDAP configuration and I had everything working for about a day and then after playing with svn+ssh for a ...
3
votes
1answer
78 views

How to write a Gentoo ebuild file , with LINGUAS support

I wanted to write a ebuild for some binary package , it contains a folder for different languages , its structure is: ls /path/po: de fr ja zh_CN zh_TW I think it's easy to do it , but the ...
3
votes
3answers
584 views

Hudson - Maven is failing (cannot create /dev/null/.m2) on Tomcat-6 - Gentoo

I'm having major issues with getting Hudson up and running on a gentoo server with Tomcat 6. I'm able to deploy Hudson just fine, and I can browse the web-application, configure it and set up builds ...
3
votes
2answers
2k views

Killing linux socket from shell (gentoo amd64)

Folks, what is the best way to kill an established connection from the shell in linux? Looks like there are 'tcpkill' and 'cutter' tools available, however, on my gentoo amd64 tcpkill is disabled by ...
2
votes
4answers
160 views

How can I sandbox filesystem activity, particularly writes?

Gentoo has a feature in portage, that prevents and logs writes outside of the build and packaging directories. Checkinstall is able to monitor writes, and package up all the generated files after ...
2
votes
2answers
200 views

Python time.time() -> IOError

I've just installed a base gentoo stage 3 and I get the following error when i try and call time.time(): sbx / # python import time Python 2.7.1 (r271:86832, May 22 2011, 14:53:09) [GCC 4.4.5] on ...
2
votes
2answers
257 views

cudaErrorNoDevice GTS250 gentoo

first question is cudaGetDeviceCount return cudaErrorNoDevice: This indicates that no CUDA-capable devices were detected by the installed CUDA driver. cat /proc/driver/nvidia/version NVRM version: ...
2
votes
1answer
1k views

Django/Mod_WSGI 'client denied by server configuration'

I'm attempting to set up Apache 2.2, Django 1.1.2 and Gentoo. I wish to serve my project with the address: /comics I followed the mod_wsgi directions in the django documentation to the letter, ...
2
votes
1answer
654 views

Running Apache Archiva standalone in Gentoo?

I have a server running Gentoo 2.6.12 r6 and I want to run Apache Archiva as a standalone server at startup. Does anyone have a working init.d script to accomplish this? Thanks!
2
votes
3answers
6k views

How to install a masked package in Gentoo 2008?

I searched the net and handbook, but I only managed to learn what is the masked package, and not how to install it. I did find some commands, but they don't seem to work on 2008 (looking at it, it ...
1
vote
1answer
13 views

Gentoo Linux global environments for root [closed]

I'm confused with setting variables in /etc/env.d directory. When I write echo $PATH from user - it's print me all variables that set it myself. But from root I see one... Where should I set variables ...
1
vote
1answer
29 views

Where can I find the arch/setup source?

Where can I find the arch/setup source? I did not find in ftp://ftp.archlinux.org/sources/ Who knows? thanks.
1
vote
2answers
83 views

Problems with xmonad settings compilation

I am having problems compiling the settings file for my xmonad installation. When I try to compile the settings file with: ghc -o xmonad xmonad.hs I get the following errors. I've posted some ...
1
vote
1answer
86 views

Web services support in IntelliJ IDEA running under Gentoo Linux

Does anybody able to use build-in web services (JAX-WS) support in IntelliJ IDEA under Linux? Most of features don't work under Gentoo (Calculate actually). Ex, when I launch command "Tools -> Web ...
1
vote
1answer
89 views

how to add Tkinter support to python2 on my gentoo? [closed]

The default python version on my gentoo is python2, and the default python installed on gentoo has no Tkinter support. After I added the following line to /etc/portage/package.use dev-lang/python tk ...
1
vote
4answers
214 views

How to get kernel version by using kernel name (not current kernel)

Simply I want to clean older kernel's modules. It's "uname -r" but I need to get such information for all kernels with Python (I already know their names and can clean kernel files, initramfs and ...
1
vote
1answer
59 views

Bash completion programming , '@' is always removed in completion string

I'm doing a bash completion for Gentoo , which search for packages , sets ( portage 2.2 new feature ) , but i met a problem when i'm using the following command: emerge @pres And i'm supposed to ...
1
vote
1answer
183 views

How to compile a APR test script

Its a long time since I've used C but now I'm trying to compile a short script that gets server-stats from the Apache-Portable-Runtime (APR). Header files located at /usr/include/apr-1/apr*.h and ...
1
vote
1answer
345 views

gentoo geoip installation

I try to install the geoip extension through SSH on my gentoo server. I did: emerge Geo-IP : OK pecl install geoip : OK geoiplookup www.bbc.co.uk : gives me GeoIP Country Edition: ...
1
vote
4answers
522 views

What is the best Linux distro for System Programming?

I want to work with low level system programming and virtualization for my research. I tried Ubuntu 10.04 + Xen 4.0.0 but they weren't going quite well right from the installation. One of my friends ...
1
vote
3answers
234 views

Packages, Ubuntu counterparts of Gentoo's useful commands

Trying to learn how to work with packages in Ubuntu (and have Gentoo experience). This command is already known: (1) sudo apt-get install pkgname Looking for counterparts of these: (2) emerge -s ...
1
vote
3answers
218 views

Problems with system() calls in Linux

I'm working on a init for an initramfs in C++ for Linux. This script is used to unlock the DM-Crypt w/ LUKS encrypted drive, and set the LVM drives to be available. Since I don't want to have to ...
1
vote
1answer
158 views

OpenSSH connection trouble

I'm trying to use Putty 0.60 to log in to an OpenSSH 5.3 server. Connections with openssh from another Linux server are possible, but Putty fails. Putty's event log tells me "software caused ...
1
vote
3answers
215 views

How can including GDB debugging symbols 'break packages'?

When I am building packages on Gentoo. I get this warning that '-ggdb3' flag can 'break packages. I have yet to find an instance of when that is true. Although I once found some code which broke ...
1
vote
1answer
931 views

Hierarchical ldd(1)

Due to using Gentoo, it often happens that after an update programs are linked against old versions of libraries. Normally, revdep-rebuild helps resolving that, but this time it's a dependency of a ...
1
vote
7answers
3k views

/etc/motd printing twice on Gentoo Linux

I've run into a problem where I'm getting two printouts of my /etc/motd file on Gentoo Linux. sshd is doing one of the printouts, and I can toggle that by configuring /etc/ssh/sshd_config, but I ...
1
vote
7answers
683 views

Does the Gentoo install CD contain everything for C++ development?

I'd like to install Gentoo. I need it to develop GUI C++ applications using wxWidgets, so I need: build tools: make, automake, autoconf, etc. C++ compiler (GCC) X Window System for testing (Fluxbox ...
0
votes
0answers
9 views

Root ext4 partition using xen kernel (gentoo)

I have just tried to install gentoo linux using xen kernel. The problem is that in kernel config in filesystem section there was no ext4 option. But my root partition is ext4. Well I tried to ignore ...
0
votes
0answers
42 views

How to install Cloudera Flume onto the linux Gentoo (EngineYard)

asking if anybody knows some options to install Cloudera Flume on the linux Gentoo EngineYard's instance through the portage (emerge) Or chef recipe to compile flume. Thanks!
0
votes
0answers
183 views

Arch or Gentoo?? which one better suits FPGA/C/C++ developers needs [closed]

For a couple of months now I was trying to find a Linux distro for a workstation. After some research I've finally nailed it down to two competitors: Arch and Gentoo. Key features: simplicity ...
0
votes
1answer
486 views

/var/run/dbus/system_bus_socket Permission denied

For some time, when trying to run dbus gives me the following error, even if I'm logged in as root: gentoo herman # /etc/init.d/dbus start * Starting D-BUS system messagebus ... Failed to start ...
0
votes
0answers
92 views

My partition is weird… on gentoo fdisk [closed]

I've installed a Windows 7 OS after Gentoo is installed done. when i return to Gentoo Livecd to reinstall GRUB, i've got an error : #grub-install --no-floppy /dev/sda The file /boot/grub/stage1 not ...
0
votes
1answer
363 views

lighttpd as trouble running a lua script

I have been trying to run a lua script in lighttpd. I am running gentoo and I installed lighttpd with the lua use flag. mod_magnet.so is where it is supposed to be. When I try to start the server I ...
0
votes
1answer
260 views

Freetype with Ubuntu patches in Gentoo overlays

There has been bobrik-cleartype overlay for Gentoo which contained freetype, libXft, etc, packages with patches from Ubuntu (adding USE +ubuntu). Then it has been absorbed by devnull overlay. Now ...
0
votes
2answers
291 views

how to Install glibc 2.3.2 on Gentoo?

I'm wrote an application and I need to execute it on Gentoo, but when I try run it, I get the following message: /lib/libc.so.6: version `GLIBC_2.3.4' not found (required by ...
0
votes
1answer
432 views

Apache server ignores .htaccess

I'm trying to get a website working on my test environment, but somehow it is not working. I can load the normal index page, but when I want to access /page/test it throws an error saying the page ...
0
votes
1answer
256 views

shellscript to monitor nginx log file on Gentoo expires after log file was gzip'ed

this is a follow up question of my previous question So I have this shellscript to monitor a nginx log file on Gentoo, the problem is the log file were renamed and gziped after certain file size or ...
0
votes
2answers
85 views

Using library with different names within autoconf

I am trying to build an application with OpenSync 0.4 (0.3.9 indeed) dependency. In the project's configure.ac the opensync library is written as libopensync1. However, this doesn't build on my ...
0
votes
2answers
144 views

Problems upgrading APC 3.0.19 -> 3.1.4

On the gentoo Linux server I use, I've just upgraded APC from 3.0.19 to 3.1.4 and it appears as if something is not working properly there. It appears as if cache entries which should have been ...
0
votes
0answers
309 views

Desktop.el under emacsclient

I am trying to use desktop functionality (http://www.emacswiki.org/emacs/DeskTop) in emacs. I added following code to my .emacs: (require 'desktop) (setq desktop-save t) (setq ...
0
votes
5answers
4k views

“#include <asm/io.h>” causes “error: asm/io.h: No such file or directory”

I am using gentoo and trying to compile a program to control the bits on the parallel port. It has this line near the top of it: #include <asm/io.h> And when I try to use gcc on it, it ...
0
votes
1answer
282 views

Fresh OpenEMM installation shows bean errors on some pages

We have deployed a fresh openemm installation on a resin server (which wasn't exactly straight forward due to an enormous amount of dependencies although resin is the recommended and default ...
0
votes
1answer
1k views

Getting Tomcat to play well with Netbeans 6.7 on Linux

I have an external Tomcat server configured to run J2EE applications on my development (Gentoo Linux install) machine. This works great if the server is started prior to opening Netbeans and deploying ...
0
votes
6answers
10k views

How to configure PHP under Apache web server in GENTOO Operating System?

is there anyone who knows how to install / configure php under apache? I have emerge php apache both. I wanted to use mod_php for apache in GENTOO OS. php temp.php command line runs fine, but ...
0
votes
1answer
354 views

mod_rewrite adding unwanted file extension

I set up Phorum to use search-engine friendly URLs on my local server (Ubuntu Jaunty). It worked perfectly. Upon moving the site to the production server (Gentoo), I get 404 not found for all pages. ...
0
votes
2answers
119 views

darcs help breaks my shell

I have just installed darcs 2.1.2.2. When I type darcs help, sth less-like shows up. When I dismiss it with q it goes away but I don't get prompt and can't execute any commands. C-c doesn't work ...

1 2