Questions tagged as 'linux'

1
answer

How to change the display of user name in Ubuntu terminal [closed]

How can I change the display of my user name in the terminal? With this very large text, it gets in the way.     
asked by 28.06.2018 / 01:44
1
answer

compiz compile error in slackware 14.2 64 bits with multlib [closed]

I'm trying to compile the compiz inside the slackware 14.2 64 bit with multlib enabled. And the compiler returns the following error: 3800/7907MB 0.13 0.06 0.08 1/527 9098slackware root /home/jjsantos/Downloads/compiz # sh compiz.SlackBui...
asked by 24.10.2016 / 01:47
1
answer

Know server storage capacity

I would like to know which of these information represent the storage capacity of my server?     
asked by 23.03.2018 / 02:07
1
answer

Is it possible to install Android without the manufacturer's edition? [closed]

Hello, If in a hypothetical situation, I have how to change the boot of my cell phone, can I install Android raw? Like, I know manufacturers change it before installing, but without this issue does it work? Because I know that the communication...
asked by 02.08.2015 / 16:04
1
answer

could not open terminal for stdout

I'm having a problem with gradle when running any command and the following error message is returned:      * What went wrong: Could not open terminal for stdout: could not get termcap entry View error in pastebin link     
asked by 10.05.2018 / 14:19
1
answer

How to change the site folder in Apache2?

I need help setting up LAMP. Everything is working perfectly. The things I would like to change are mere quirks, but I still find it interesting. I would like to change the root directory. In case you are in: /var/www/html , I would lik...
asked by 28.12.2018 / 21:39
1
answer

Standard compilation for linux [closed]

blz galera, and the following if I compile a file in .exe I can take it to a newly formatted machine with windows without anything installed and run this file, I wanted to know how to do this for linux, I do not care if I compiled it a script C,...
asked by 07.04.2017 / 03:34
1
answer

Processes - Doubt

To better understand how processes work, fork, I wrote this test program: #include <unistd.h> #include <stdio.h> int main(){ int value = 9 ; int pid = fork(); if(pid==0) value+=2 ; else value-=5 ; printf("%d...
asked by 14.04.2016 / 03:50