Most voted "linux" questions
For SOFTWARE DEVELOPMENT issues that are specific to the GNU/Linux operating system. Mere use of shell and desktop, installation and support are not within the scope of the site. If your question is not about development or development but has nothing to do with Linux Apis or Linux-specific behavior you should not use this tag, even if you are running on Linux.
Learn more…1,005 questions
Sort by count of
-
-3
votes0
answers42
viewsROS + Google Colab
Hello. I would like to make the ROS (Robot Operating System) work on Google Colab. Does anyone have an example of how to do this? I was taking a look at these 2 links:…
-
-4
votes1
answer82
viewsStandard compilation for linux
blz galera, and the following if I compile a file in . exe I can take it to a recem windows formatted machine without anything installed and run this file, wanted to know how to do this for linux, I…
linuxasked 7 years, 7 months ago Fabricio Silva 11 -
-4
votes1
answer84
viewsHow to download a program from a linux repository without installing it?
I wonder if it is possible, if yes, how to download a program from a linux repository without installing it. The reason is that almost every time I want to install software, I can use a command on…
-
-5
votes1
answer174
viewsSED USE WITH A VARIABLE
I need to configure two files. sh, the first sshpasssrv.sh file will be responsible for filling in the second file that will be sshpass.sh, the first file when executed, will ask for the ip, then it…
linuxasked 4 years, 11 months ago Ricardo JM Sistemas 11 -
-6
votes1
answer103
viewsProcesses - Doubt
To better understand the workings of the processes, Fork, I wrote this test program: #include <unistd.h> #include <stdio.h> int main(){ int value = 9 ; int pid = fork(); if(pid==0)…