svn over HTTP proxy [closed]


Question Closed. This question is off-topic. It is not currently accepting answers. </div> Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 10 years ago. Improve this question I'm on laptop (Ubuntu) with a network that use HTTP proxy (only http connections allowed). When I use svn up for url like 'http://.....' everything is cool (google chrome repository works perfect), but right now I need to svn up from server with 'svn://.…
Read more ⟶

Running mongodb on ubuntu 16.04 LTS


Question How can I run Mongodb, as a service, on Ubuntu 16.04 LTS? A few days ago I had upgrade my server to Ubuntu 16.04. I have noticed the my MongoDB service does not start when I reboot. Trying to use sudo initctl start mongod Did not do the trick. Anyone has an idea how to solve this? Answer Anyone who upgrade or installed Ubuntu 16.04 ( also known as Ubuntu Xenial xerus ) noticed that some of the old services stopped running.…
Read more ⟶

Virtualbox: "USB device in use by someone else" error, how to make (mac) host let go? [closed]


Question Closed. This question is off-topic. It is not currently accepting answers. </div> Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 10 years ago. Improve this question I'm trying to set up a USB Fax Modem in Ubuntu through Virtual Box but I'm not sure how to do so. Host OS = Mac OS X Virtual Box Guest OS = Ubuntu 12.04 56k USB Fax/Modem = Lenovo 43R1786 (43R1815) by Conexant On the host os, I can see /dev/tty.…
Read more ⟶

Node.js installation: openssl not installed


Question I have installed libssl-dev and openssl but I get this when I install node.js: > ./configure && make && make install Checking for program g++ or c++ : /usr/bin/g++ Checking for program cpp : /usr/bin/cpp Checking for program ar : /usr/bin/ar Checking for program ranlib : /usr/bin/ranlib Checking for g++ : ok Checking for program gcc or cc : /usr/bin/gcc Checking for gcc : ok Checking for library dl : yes Checking for openssl : not found Checking for function SSL_library_init : yes Checking for header openssl/crypto.…
Read more ⟶

gulp command does not work


Question I am using ubuntu 14.04 LTS, I have nodejs (not node) and npm installed. I had installed gulp using npm install gulp -g. But my command gulp does not work, it runs silently returning nothing! Answer I ran into the same problem today on Ubuntu 14.04 LTS. After debugging I noticed that I had accidentally installed nodejs and node using apt-get. After running sudo apt-get remove node the problem was fixed.…
Read more ⟶

How to check the presence of php and apache on ubuntu server through ssh


Question How can I check whether apache is installed with php and mysql on Ubuntu server through ssh? Also if it is installed, in which directory? And if in case some other package is installed, like lighttpd, where that is. Answer Another way to find out if a program is installed is by using the which command. It will show the path of the program you're searching for. For example if when your searching for apache you can use the following command:…
Read more ⟶

How to duplicate a folder exactly


Question I am trying to copy a filesystem for a device I am programming for. After so much time trying to figure out why the filesystem I was installing wasn't working I found out that cp didn't get the job done. I used du -s to check the size of the original filesystem and the one that I copied with cp -r, as it turns out they differ by about 150 bytes.…
Read more ⟶