Debian is a universal operating system composed of over 29000 free and open-source software packages. The primary form of Debian, Debian GNU/Linux, uses the Linux kernel and GNU OS tools.

learn more… | top users | synonyms

31
votes
8answers
17k views

How to build a Debian/Ubuntu package from source?

I have the source of a program (taken from cvs/svn/git/...) and I'd like to build a Debian/Ubuntu package for it. The package is present in the repositories, but: It is an older version (lacking ...
24
votes
7answers
37k views

How to setup a Subversion (SVN) server on GNU/Linux - Ubuntu

I have a laptop running Ubuntu that I would like to act as a Subversion server. Both for myself to commit to locally, and for others remotely. What are the steps required to get this working? Please ...
16
votes
5answers
5k views

Python distutils - does anyone know how to use it?

I wrote a quick program in python to add a gtk GUI to a cli program. I was wondering how I can create an installer using distutils. Since it's just a GUI frontend for a command line app it only works ...
14
votes
5answers
2k views

Suggested resources for newbie ARM programmer?

I'm starting develop an application in embedded arm board from http://www.embeddedarm.com. I'm a newbie in developing embedded applications. I would like resources like books, online guides that will ...
11
votes
2answers
361 views

How do I make an ubuntu/debian package for a twistd/twisted plugin?

As a follow-up to How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?, how does one make a debian package for a twisted plugin? Assuming the setup.py is ...
11
votes
6answers
13k views

No module named _sqlite3

I am trying to run a Django app on my VPS running Debian 5. When I run a demo app, it comes back with this error: File "/usr/local/lib/python2.5/site-packages/django/utils/importlib.py", line 35, ...
10
votes
3answers
192 views

How to deal with a proprietary Python package name conflicting with a public one?

Background The group I work with has been using and developing a Python package, which for the purposes of this question I'll call foobuilder. We serve updates for Linux systems using private RPM and ...
10
votes
5answers
1k views

How do I do Debian packaging of a Python package?

I need to write, or find, a script to create a Debian package, using python-support, from a Python package. The Python package will be pure Python with no C extensions. The Python package for testing ...
10
votes
3answers
1k views

Resources on writing a Debian/Ubuntu deb package?

I'm getting started preparing an installation script for a software package onto an Ubuntu server. I would like to write a script as a .deb package that is aware of dependencies that must be ...
10
votes
11answers
4k views

Best way to sandbox Apache on Linux

I have Apache running on a public-facing Debian server, and am a bit worried about the security of the installation. This is a machine that hosts several free-time hobby projects, so none of us who ...
10
votes
21answers
49k views

Centos or Debian as a server OS? [closed]

What would you choose for a server used for web hosting, dns and email and why?
9
votes
1answer
143 views

Standard way to create debian packages for distributing python programs?

Out there there is a ton of information on how to do this, but since "there is more than a way to skin a cat", and all the tutorials/manuals that cover a bit of the process seem to make certain ...
9
votes
2answers
1k views

R: apt-get install r-cran-foo vs. install.packages(“foo”)

When installing R packages (say mcmcpack in this example) under Ubuntu I have the choice between the following two methods of installation: # Let the distribution's packaging system take care of ...
8
votes
5answers
3k views

How to search contents of multiple pdf files?

Ho could I search the contents of pdf files in a directory/subdirectory. Looking for some command line tools. It seems grep cant search pdf files.
8
votes
2answers
2k views

MongoDB limit memory

I am using mongo for storing log files. Both mongoDB and mysql are running on the same machine, virtualizing mongo env is not an option. I am afraid I will soon run into perf issues as the logs table ...
8
votes
5answers
571 views

What's the best way to turn CPAN modules into Debian packages?

Whenever I work on a system of any flavor that has a particular way of handling package management, I try to stick with that standard for managing my Perl modules. "When in Rome, etc." For example, ...
8
votes
6answers
3k views

How can I pass a password from a bash script to aptitude for installing mysql?

I am writing a simple bash script to install MySQL on Ubuntu. #!/bin/bash apt-get update # Install MySQL5 aptitude -y install mysql-server mysql-client libmysqlclient15-dev However MySQL prompts ...
7
votes
6answers
403 views

Java Memory error: unable to create new native thread

I get this error on my UNIX server, when running my java server: Exception in thread "Thread-0" java.lang.OutOfMemoryError: unable to create new native thread at java.lang.Thread.start0(Native ...
7
votes
4answers
366 views

Double-click installer in Ubuntu?

I'm trying to update our installer so a user can simply double-click on a file and have all the dependencies and our software installed easily. This is a suite of applications that will are deployed ...
7
votes
7answers
13k views

Where to find prebuilt binaries for subversion 1.6 for Ubuntu (or Debian)?

While I can easily find the binaries for the latest version of subversion (1.6) I can't find the binaries for Ubuntu (or Debian). The download page at tigris.org suggest to use the command: apt-get ...
7
votes
4answers
8k views

How can I prevent tons of apache processes spawning when I start apache and proceeding to kill my machine?

I have a highly trafficked application on one debian machine and apache has started acting strange. Every time I start apache, tons of apache processes are spawned, the app doesn't load at all, and ...
7
votes
8answers
5k views

Clone Debian/Ubuntu installation

Is there an easy way of cloning entire installed debian/ubuntu system? I want to have identical installation in terms of installed packages and as much as possible of settings. I've looked into ...
7
votes
8answers
4k views

User script location linux (debian etch)

In the linux file system, where should user scripts be placed? I'm thinking specifically python scripts to be called by cron.
6
votes
4answers
117 views

How to install 2 different R versions on Debian?

On our server, R 2.12.1 is installed following the instructions on http://cran.r-project.org/bin/linux/debian/ , using apt-get install etc etc. Due to circumstances the old lenny machine hasn't been ...
6
votes
1answer
290 views

How to use tracing in GDB

In the documentation for gdb: The tracepoint facility is currently available only for remote targets. See section Specifying a Debugging Target. In addition, your remote target must know how ...
6
votes
4answers
371 views

cabal-install and Debian

So, this is a bit of a personal problem, but maybe people will have good advice or workarounds. The problem is about installing cabal-install and haskell-platform under Debian. When you apt-get ...
6
votes
2answers
8k views

Install postgres 9.0 in debian lenny

Dear all, My system has the following distribution details $ lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 5.0 (lenny) Release: 5.0 ...
6
votes
2answers
454 views

Android phone as computer mouse

I created an Android app that serves the touch screen sensor data to a java client that is listening on Debian Lenny machine. The client maps this data to locations on the screen just like a wacom ...
6
votes
1answer
5k views

Simplest way to get current time in current timezone using boost::date_time?

If I do date +%H-%M-%S on the commandline (Debian/Lenny), I get a user-friendly (not UTC, not DST-less, the time a normal person has on their wristwatch) time printed. What's the simplest way to ...
6
votes
4answers
1k views

Why RPM is better than DEB for MeeGo?

I know there has been a lot fuzz about this subject on various forums and newsgroups concerning the merge of Moblin and Maemo. I'd like to know what stackoverflow-fellows think about this. What are ...
6
votes
3answers
4k views

start-stop-daemon quoted arguments misinterpreted

I have been trying to make an init script using start-stop-daemon. I am stuck on the arguments to the daemon. I want to keep these in a variable at the top of the script but I can't get the quotations ...
6
votes
4answers
3k views

How to solve TPTP Monitor error ( IWAT0435E ) in Eclipse, on Debian-based Linux?

After installing Test & Performance Tools Platform in Eclipse Ganymede on, whenever I tried to profile a Java application, I was confronted by the launch configuration dialogue which contained an ...
5
votes
3answers
150 views

Does anyone have a 'hello world' Debian package, for D source code?

I'm writing a D application which I want to package as a Debian package. Does anyone know of a tutorial, or a skeleton package, to show me how to to do this for a D application? Do I need to use ...
5
votes
3answers
1k views

RVM “ERROR: Unable to checkout branch .” single-user

I'm having trouble installing RVM on a new Debian 6 VirtualBox VM. I've installed all the needed packages and downloaded the install script fine using (curl -s ...
5
votes
3answers
3k views

CUDA incompatible with my gcc version

I have troubles compiling some of the examples shipped with CUDA SDK. I have installed the developers driver (version 270.41.19) and the CUDA toolkit, then finally the SDK (both the 4.0.17 version). ...
5
votes
3answers
4k views

“ERROR:gitosis.serve.main:Repository read access denied” when trying to clone a git repo

I have one desktop PC running Ubuntu 11.04 and one Netbook running Debian 6.0.1a. I have installed and configured git as described here, on my desktop PC. I am also learning Symfony and have setup a ...
5
votes
0answers
449 views

How to read out an USB Rfid Reader imitating an HID keyboard using Linux and Python3

I'm using an Rfid Reader (a small usb stick) which imitates an HID keyboard on Debian Linux (Squeeze). less -f /dev/input/event2 gives me a bunch of gibberish on the screen the moment an rfid tag is ...
5
votes
4answers
1k views

Using GVim on Windows to edit remote Linux files?

Is it possible to use gvim to edit remote Linux files if I am running Windows? To elaborate, I would like to connect to the Linux server via Putty and then use my local gvim instance to edit the ...
5
votes
2answers
208 views

How to install/upgrade Lisp libraries on Debian

I recently discovered that some of my favorite libraries have been removed from Debian, e.g., Hunchentoot: For a while now most Common Lisp projects do not do releases anymore, our plan is to ...
5
votes
4answers
685 views

Faster forking of large processes on Linux?

What's the fastest, best way on modern Linux of achieving the same effect as a fork-execve combo from a large process ? My problem is that the process forking is ~500MByte big, and a simple ...
5
votes
4answers
1k views

How do I compile DOS programs on Debian?

For my assembly language class, we're writing DOS programs using DPMI. Unfortunately, I don't have access to a 32-bit windows machine all the time. I do have a Debian virtual machine installed on ...
5
votes
4answers
671 views

Does it makes sense to partition a dedicated server hard drive?

I am going to install Debian on our new dedicated server and I have a chance to set up hard drive partitions. The server has two 750GB drives configured as RAID 1. We are going to have 10 Postgresql ...
5
votes
18answers
691 views

what language to program a site with?

I am planning to program a deviantartish site. It wont be like deviantart but the things it would need to do would be alike (watch people, send notes, upload, tag, access (my)sql etc). I am sure i ...
5
votes
3answers
1k views

Is there a tool to automatically fetch build dependencies under Debian or Ubuntu?

I recently downloaded the source tarball for a GTK application that I'd like to improve. It uses the standard ./configure and make build sequence. The first time through, configure reported a bunch ...
5
votes
9answers
2k views

Which hardware to buy for a new Linux server system?

I want to build a decently performing, but above all stable Linux system for home server use, on a reasonable budget. Sadly, I have several bad experiences trying to install Linux on recently ...
4
votes
3answers
73 views

PHP set_include_path configuration

I got a problem with the set_include_path, I read a lot of messages on that problem but none works for me. I'm on Debian and my root directory would be set to /home/project/ So I tried these 4 ...
4
votes
2answers
106 views

Where can I find and install the dependencies for pygame?

I am relatively new to linux and am trying to install the pygame dev environment for python. When I run the setup.py it says that I need to install the following dependencies, one of which I found and ...
4
votes
2answers
104 views

Differing behavior with Python script on RHEL and Debian, nearly identical python versions

I rarely post questions to a forum, but this one has me stumped. I'm very curious as to what's causing this (a solution would also be nice, but mostly, I'd like to know why I'm having this issue): I ...
4
votes
1answer
742 views

PostgreSQL Query to Excel Sheet

I need to export some data from PostgreSQL to Excel (quick customer wish), and the last time Excel had serious problems opening or importing my COPYd csv files (line endings, utf-8 encoding, etc), ...
4
votes
4answers
213 views

Cronjob php script not working

I'm trying to set a cronjob to run every 20 minutes. This works manually: php /srv/www/mysite.co.uk/public_html/PP/Make_XML.php LONDON I tried to use "crontab -e" and set it even to every 20 ...

1 2 3 4 5 18