0
votes
0answers
19 views

how to monitor changes in native debian package dependencies

I have created a native debian package package1-1.0_all.deb which depends on package2 (>=1.0) apt-get install package1 will also install package2 as package1 to depends on package2 But i would like ...
-1
votes
0answers
11 views

KVM guests on Ubuntu 10.04 with ext4 sometimes become read-only [closed]

I have Debian 6.0 host with KVM (Proxmox VE 1.9) and 4 virtual machines with Ubuntu 10.04. And sometimes filesystem (ext4) on guest hosts become read only and VMs stops working. When I ssh to broken ...
0
votes
1answer
11 views

When building deb files using dpkg, I can't get it to ignore hidden files such as .git and .gitignore

I have a pretty simple project for an internal package at my company. I've got a base directory with DEBIAN, etc and opt in it with the files I need to package and install. I go up one directory and ...
0
votes
0answers
17 views

debian packaging - cmake project

I am building a package from a cmake project organized in 2 source directories: When building manually i have to go in the 2 src dirs and do: cd src; mkdir build; cd build; cmake .. ; etc... Now ...
3
votes
1answer
43 views

How to kill zombie process

I launched my program in foreground ( a deamon program). and then I killed it with kill -9 but I get a zombie remaining and I m not able to kill it with kill -9. How to kill a zombie process? If the ...
0
votes
0answers
15 views

merge 2 .deb files to 1.deb file [closed]

In my Ubuntu system, there are 2 debian files, one is the main file, the other is the patch file. usually, we need to run "$dpkg -x filename" command to extract the 2 .deb files, then merge it ...
-1
votes
1answer
24 views

how to set locales and keyboard layout in the command line without gui [closed]

I'd like to do a bash script that lets change the language of a debian based system by typing a number for each language. Sadly I'm not familiar with debconf. How can I change the keyboard-layout ...
0
votes
1answer
32 views

Guidence on beginning with packaging

I finished my first Python project, and I have all of the files ready and it's nice and stable. Now I want to move onto creating a binary source file so it'll be installable on linux machines ...
0
votes
0answers
35 views

how to digitally sign .deb debian package using certificate

I am currently signing some debian .deb packages with a self-signed PGP certificate, which I generated using gpg --gen-key and sign my .deb file but when i download that .deb in chrome is give me ...
-1
votes
2answers
75 views

Start/stop service daemon as different user in Debian/Ubuntu [closed]

I am trying to get "root" user to start a service as "user". Is there any easy way to do this? The system running is Ubuntu Server 13.04 (Raring Ringtail). Thanks in advance.
0
votes
1answer
67 views

Is there Boost 1.5.3 package for Debian/Ubuntu?

Is there Boost 1.5.3 package for Debian/Ubuntu in a PPA someplace? The latest I find is 1.4.X
0
votes
1answer
29 views

iptable for port forwarding

I want to redirect all trafic coming to my Linux (192.168.1.34) on the port 22 to another address So I used the following iptable command sudo iptables -t nat -A PREROUTING -p tcp --dport 22 -j DNAT ...
0
votes
1answer
81 views

VTUNE: Cannot display data

I'm using Intel Vtune to do some analyzis: memory access, access contention, etc. and I'm getting this error: Cannot display data. The data cannot be displayed: there is no viewport applicable for the ...
0
votes
0answers
29 views

Disable ptrace on debian

Is there a way to disable ptrace on debian. I would like to see if there is something similar to what is done here for ubuntu: http://software.intel.com/en-us/forums/topic/375990
0
votes
1answer
32 views

how to minify the linux userspace on debian / ubuntu?

some times, i have to minify a debian or ubuntu-system. I need to reduce the packages to a very small subset: No x11 or other graphical stuff No Apache, MySQL No preinstalled (and old) rubygems ...
0
votes
1answer
31 views

My .desktop file is not executing the application

I am new to Linux and Ubuntu in general. I want to create a .desktop file for the sublime application. Here is what I have.. [Desktop Entry] Encoding=UTF-8 Version=1.0 Type=Application Terminal=false ...
0
votes
0answers
33 views

Decode error in python3 in Debian (UnicodeEncodeError: 'ascii' codec can't encode characters in position)

I have problem with decode in Python3 script. I know that this problem has been discused but solutions I have found don't help. Problem: I have xml in 'Unicode string' type (get from doc.toxml()) and ...
-1
votes
3answers
38 views

Uncompress tar.gz file [closed]

With the usage of wget command line I got a tar.gz file. I downloaded it in the root@raspberrypi. Is there any way to uncompress it in the /usr/src folder?
1
vote
1answer
55 views

gcc with electric fence library does not take effect

I have written a snippet that has memory problems when dynamically allocating; when compiled with -lefence option, it seems that there is no effect. Here is the code segment: int main(int argc, char ...
0
votes
1answer
31 views

Can I use the ubuntu default postgres with heroku?

I'm writing a web app to run on heroku using postgresql. On their servers, an environment variable is provided like: export DATABASE_URL=postgresql://localhost:5432/iqtest They advise that when ...
9
votes
1answer
230 views

Are compiled R packages backward compatible?

The new R 3.0.0 requires that all contributed packages are reinstalled. Two questions: Does this also mean that software that calls R, e.g. rapache, need to be recompiled after R has been upgraded? ...
2
votes
0answers
256 views

Prevent installation of BOTH PostgreSQL 9.1 and 9.2

In an attempt to automate the deployment of an Ubuntu 12.04 server (using Puppet) that contains Postgresql 9.2 and PostGIS 2.x, I end up with both PostgreSQL 9.1 and 9.2 installed and their services ...
0
votes
0answers
21 views

Virtualhost with ServerName in Debian / Youbuntu

I use a third party DNS , i have an A record set up that points to the IP address. and i have a CNAME which i think is useless because i just wanna see it work not really interested in CNAMEs. on ...
1
vote
1answer
46 views

Is there a difference in how && and || are used between Debian and Ubuntu

The following runs fine from Debian squeeze, but in Ubuntu 12.04 always returns "Aggregate instance is DOWN" regardless of whether the instance is up or down. wget -O/dev/null -q ...
1
vote
1answer
168 views

Debian Package Creation- How to install configuration files?

I've been really stuck on this minor (I'm sure) issue so any help would be greatly appreciated. I've created a standard ubuntu package with dh_make. The purpose of this package is to create a package ...
2
votes
1answer
60 views

Defining binary package description using package.substvars without getting clobber by debhelper scripts?

Okay so I have a debian/rules file that looks something like this: #!/usr/bin/make -f PACKAGE = packagename SRC_VERSION := $(shell grep version setup.py | awk -F [\'] '{print $$2}') TARBALL = ...
8
votes
2answers
379 views

Packaging Golang application for Debian

How can I put my Go binary into a Debian package? Since Go is statically linked, I just have a single executable--I don't need a lot of complicated project metadata information. Is there a simple way ...
0
votes
1answer
259 views

How to install g++-4.7 on Ubuntu?

There is no g++-4.7 with apt-get install, all g++ versions provided by apt-get are equal to or under 4.6, so how can I install g++-4.7?
0
votes
1answer
25 views

How can I add dependancy files in Debian Package in Ubuntu?

I am trying build a debian package with some dependencies... Let me know how can I add dependencies into it. I have tried putting it in control file... but it is not working.. i am following this ...
0
votes
1answer
88 views

In Fabric, how can I check if a Debian or Ubuntu package exists and install it if it does not?

I required this to quickly install memcached as part of a Fabric script setting up test servers. Figured I'd record it here for future reference.
0
votes
0answers
210 views

Unable to start Ubuntu in graphical mode

I have a big problem. Last friday, I shuted down my computer properly but now, I don't manage to start my ubuntu distribution with its graphical mode. When I capture the log trying to run the startx ...
1
vote
1answer
45 views

Debian packaging - treatment of modified/created files, debian/rules

I've a couple of questions regarding treatment of files produced during the build of a library that I want to package under Ubuntu. I'm using the dh_make infrastructure, so I get a "debian" folder ...
0
votes
0answers
18 views

How to Change the Default Location of the Debian README and changelog files

In my control file I have package: x but I want the Debian doc files (changelog.Debian.gz, copyright, README, and NEWS.gz) to be installed by default in /usr/share/doc/y instead of in ...
0
votes
0answers
123 views

'Debian Kit' dependency issue on Android [closed]

So, I used Debian Kit (in the google play store) to install Ubuntu alongside my android on my smart phone. The problem is, no matter what I do, I can't get it to do anything I wanted it to do. ...
1
vote
1answer
71 views

OpenGL Shadow Volume Difference On Debian and Win7,Ubuntu

In windows7 with latest opengl and in Ubuntu 12.04 with freeglut3 app, I can draw shadows correctly by using shadow volume method. However, when I run my code on an older version of Debian GNU/Linux ...
1
vote
1answer
35 views

Propagating a change of variable done by a sub-executed script

My problem is self-descripting: script1.sh contains: #!/bin/sh export SOMEVAR=0 echo "1, SOMEVAR=$SOMEVAR" ./script2.sh echo "2, SOMEVAR=$SOMEVAR" script2.sh contains: #!/bin/sh SOMEVAR=1 ...
1
vote
1answer
301 views

Python bindings for libtorrent-rasterbar are not working

I'm running Debian 6.0.6 I've downloaded latest version of libtorrent-rasterbar from here: http://code.google.com/p/libtorrent/downloads/detail?name=libtorrent-rasterbar-0.16.6.tar.gz&can=2 and ...
0
votes
0answers
60 views

ImportError : libicui18n.so.36 is occurred during install PyICU

I try to install PyICU During the process, I face with the problem inside PyICU moldue, that is , Problem in : From _PyICU import * ImportError : libicui18n.so.36: cannot Open shared object file: No ...
7
votes
2answers
521 views

How to download all dependencies and packages to directory

I'm trying to install a package on a machine with no Internet connection. What I want to do is download all the packages and dependences on a machine WITH an Internet connection and then sneaker-net ...
0
votes
0answers
59 views

Expiry-issues with Redis-sets

I'm trying to use Redis sets to store some synchronization-state. In order to avoid having to to garbage-collection for inactive/old users, I set a far-out expire on all keys I access). It basically ...
0
votes
1answer
76 views

nspr-devel for Debian Linux?

I was wondering if this is possible. I am able to install nspr into CentOS; yum install nspr-devel I saw this is really only meant for for CentOS/RHEL/Fedora so note ...
1
vote
2answers
366 views

How *.dsc files are related to *.deb and source code files

Without packaging system we have (A) source code, which can be translated/compiled to (B) binary code. In case of debian/ubuntu packages we have (1) source code, (2) source package - dsc file and ...
2
votes
2answers
99 views

Running Linux configure error in Fix8 C++ library?

I am trying to run Fix8 at Fix8.org. I am following the README instructions as explained at: https://github.com/dakka/fix8 I am getting an error when running the ./configure command? It results in: ...
1
vote
2answers
633 views

How do I replace a hostname in /etc/hosts on debian with Python

I'm scripting a way to set hostname on a Debian system with Python. I succeed at: getting the new hostname from arg1 or if I define it as the value of a variable get the current hostname open ...
10
votes
5answers
482 views

I am unable to run a C++ program in Debian(Ubuntu) that works in Redhat(Centos)

TLDR: Having trouble compiling a C++ program that worked in Centos Redhat in Ubuntu Debian. Is there anything I Should be aware of between these two that would make a C++ program compiled using the ...
1
vote
1answer
251 views

How to adjust symbols-file in a debian package for a shared lib

I am trying to upgrade ktorrent in my Ubuntu PPA to the latest upstream version. It also requires an updated libktorrent package. It seems libktorrent was changed in incompatible ways and thus results ...
2
votes
0answers
78 views

Installing openswan unattended on Ubuntu [closed]

I am writing shell scirpt on Ubuntu to install openswan: echo "openswan openswan/install_x509_certificate boolean false" | debconf-set-selections apt-get install openswan It will prompt this ...
1
vote
1answer
433 views

Java NFC tag app for Ubuntu

I'm looking for a working Java tutorial app that reads an NFC tag on a Desktop (NOT Android - that's easy!). My goal is to have an simple app that can read the url from an NFC tag. I prefer Java, but ...
2
votes
2answers
2k views

How to write system calls on debian/ubuntu

I am trying to write a system call of my own. It would just return the current time. I know the concept of what should I do and I did go through a couple of links like these: Implementing a System ...
0
votes
1answer
91 views

How do i suppress the editor in dpkg-source --commit calls?

On Ubuntu precise I am calling "dpkg -q --commit ./ patchsetname" When I do this it decides to open an editor using the select editor binary. I want to suppress that. Any thoughts? I'd rather not ...

1 2 3 4