Skip to main content

Posts

Install Sublime Text through apt-get

Sublime Text 2 Add the sublime repository : "sudo add-apt-repository ppa:webupd8team/sublime-text-2" Update the your repository list : "sudo apt-get update" Install : "sudo apt-get install sublime-text" Source:  Ask Ubuntu
Recent posts

Update Node.js on MacOS

Do you have a MacOS computer with Node.js? Do you want to update it? Well, you are in luck, because with the following three steps you will update your Node.js server in a very easy way. "sudo npm cache clean -f" ->  to clean your npm cache "sudo npm install -g n" ->  to install  Node Version Manager "sudo n stable" ->  to install the latest stable release of Node.js That's all!

How to install OpenMP in Ubuntu (Linux)

At first, I must to say that this is my first entry that I write in English, so excuse me if I make some mistake. Said that, I will continue describing the process that you must to do if you want to install OpenMP in your machine.  First, open a terminal window and put this command: sudo apt-get install gcc-multilib When the installation progress finished, you will have the API OpenMP installed in your machine. I saw other processes, but this is the simplest way to do that. Finally, when you are going to compile your program, don't forget that you must to include the next flag: -fopenmp . With this flag, you are including the OpenMP libraries!!! Thats all!! I wait have helped you.

Generar paquetes DEBIAN (.deb) de tus aplicaciones

Tras dos días de arduo trabajo he conseguido desarrollar un paquete DEBIAN (.deb) de la aplicación que he desarrollado en mi proyecto para sistemas operativos LINUX. Para ello, he seguido las indicaciones realizadas en este  tutorial  realizado en la Wiki de la distribución Ubuntu. Más adelante realizaré un tutorial en el que explicaré paso a paso este proceso, y así, intentar aclarar las dudas que os puedan surgir.