Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

51
votes
14answers
1k views

Is it normal for a programmer with 2 years experience to take a long time to code simple programs?

I'm a relatively new programmer (18 months on the scene), and I'm finally getting to the point where I'm comfortable accepting projects and developing solutions under minimal supervision. ...
3
votes
3answers
386 views

Is there a aptitude test for programmers?

I want to know If I am cut out for programming and whether I should spend(waste?) my time attempting to learn it. Is there some sort of aptitude test I can take that can attempt to judge whether I ...
3
votes
5answers
3k views

What is the equivalent of “aptitude” in Mac OSX?

How to do "sudo apt-get install " on OSX?
2
votes
4answers
56 views

Multiple versions of python when installing a package with aptitude

On a lab machine where I can't just go clobbering things, there appears to be more than one version of python installed. If I python --version I see 2.7.1. I've installed numpy via "apt-get ...
2
votes
2answers
81 views

updating python-elementtree to overcome xpath selector issue

I'm getting an error when searching for the attribute of a node in my xml using ElementTree. expected path separator ([) The source code is: home_team_node = game_node.find( ...
1
vote
0answers
59 views

python/gtk application produces different results CLI vs Launcher

I have a python application which is basically a front end for aptitude. The strange thing is the program produces different results depending on whether it is launched from the GUI (via the .py, a ...
1
vote
3answers
94 views

Script to make the debian package managers less worthless

On my linux (Ubuntu 11.04) development machine. I often need to install libraries from source. This always causes problems for me because the package manager doesn't consider packages installed from ...
1
vote
0answers
77 views

colors of stamps [closed]

There are 8 stamps, 4 Red and 4 Green. There are three logicians also. One moderator sticks two stamps each on the forhead of each logician such that each of them can see all the stamps except those ...
1
vote
3answers
232 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
478 views

How can I list the minimal set of Debian packages needed to recreate a set of installed packages?

Is there a way of getting dpkg, apt-get or aptitude to produce a list of the packages which need to be installed on a second machine to duplicate the packages installed on a first? i.e. If I've ...
1
vote
3answers
3k views

why can't I find my.cnf?

I did updatedb. I did locate my.cnf But I cannot find it? Nothing. (I installed MYSQL using aptitude install mysql-server, and mysql does work right now.)
1
vote
2answers
893 views

What is the centOS equivalent?

apt-get install devscripts What is the equivalent in centOS?
0
votes
0answers
18 views

aptitude unable to find dependencies, broken packages [migrated]

I installed an ubuntu on a virtual machine 6 months ago. I never needed a ssh connection until now. But when I try to install sshd, I get this error: root@onur-vmdesktop:/home/onur# apt-get install ...
0
votes
1answer
90 views

How can I change the apt-get install directory

The default install directory of apt-get is /opt. Can I change it to another directory?
0
votes
1answer
73 views

apt-cache showing 2 records for the same package?

I upgraded Parallels Plesk 10 yesterday using apt-get or aptitude. Now when I run apt-cache, there seems to be the same package (psa) installed twice with different versions! How is that possible and ...
0
votes
2answers
72 views

Is there any advantage to using aptitude to install mongoDB on a server vs downloading/extracting the tar file?

I'm currently coding up the server-side of a webapp for the first time in my life. I'm using nodeJS, and plan on using MongoDB as my database with that. On the MongoDB website, their tutorial goes ...
0
votes
3answers
233 views

Aptitude: Show What Repo a Package is From, Listing Contents of a Repo

I am trying to prepare an AWS instance by installing some software, one of which is Fabric for Python, a SSH connection library. By default, AWS's yum doesn't have access to a Fabric distribution to ...
0
votes
0answers
1k views

Lost connection to MySQL server at 'reading initial communication packet', system error: 113

I have two Debian boxes: used apt-get to install mysql-server mysql-client phpmyadmin used apt-get to install apache2 apache2-mod-php5 I'm trying to connect to the MySQL server using the Apache ...
0
votes
0answers
119 views

problem of denominations [closed]

There are following denominations of money: 1, 2, 5, 10, 20, 50, and 100 paise. Alex has as twice money as David, who has as twice as Bindya, who again has as twice money as Charles. Each has two ...
0
votes
4answers
721 views

If I installed Mongo through apt-get, how do I update it?

It seems like they gave me 1.4.4 Which is not the latest. Is this normal? I want 1.6. But I'm afraid that if I do apt-get uninstall, bad things will happen.
0
votes
2answers
411 views

Why is aptitude not installing python-mysqldb properly? ( error: No module named MySQLdb )

username@servername Tue Nov 02 22:08:28 ~/public_html/IDM_app $ sudo aptitude install mysql-server Reading package lists... Done Building dependency tree Reading state information... ...
0
votes
2answers
93 views

Design principles as to how linux repository managers update themselves?

I know there are other applications also, but considering yum/apt-get/aptitude/pacman are you core package managers for linux distributions. Today I saw on my fedora 13 box: (7/7): ...
0
votes
1answer
130 views

Using aptitude to install extra php modules (after php has already been installed)?

I recently setup an Ubuntu Server 10.04 LTS server for a client which uses a PHP based forum. It's all gone well, but now it seems I need to install a new php module to enable spell checking in the ...
0
votes
1answer
194 views

purge ALL dependencies

I've a problem that seems quite simple, but I can't get it done. I have a package with many dependencies and I want to remove ALL of them, regardless wheather other packages also depend on them ( they ...
0
votes
1answer
55 views

Preventing aptitude of upgrading compiled apps

I've been struggling for quite a time now. Each time I build and install an app, after running aptitude, it wants to upgrade it even if it is on the same version. I tried to build with apt-src and ...
-1
votes
1answer
67 views

A constant retains its value, by definition

A constant retains its value, by definition. The value of a variable may be changed in the course of a program. A variable may take on any value that is allowable for either a string or numeric ...
-1
votes
2answers
71 views

What are the essential things that a new ubuntu server should have installed, for development purposes?

sudo apt-get install build-essential What else?