Questions tagged as 'linux'

7
answers

Search for all files that contain a text string in Linux

   Original question: Finding all files containing a text string on Linux from Nathan I'm trying to find a way to scan my entire Linux system for files with a specific text string. Just to be clear, I look for a text string in the file,...
asked by 21.12.2015 / 22:18
1
answer

Problem with bluetooth in slackware 14.2 current

After having updated the kernel to version 4.4.6, both the bluetooth GUI and some other things (eg connecting a device via bluetooth) do not work. The things I tried were the following: reinstall the bluetooth package (unsuccessfully) n...
asked by 29.03.2016 / 03:42
2
answers

In linux, can a file or directory belong to more than one group?

I am a beginner in Linux, and this doubt came to me: Can a file or directory belong to more than one group?
asked by 04.08.2016 / 20:58
2
answers

how to get a process launched from a script not to die when the script ends?

I'm trying to launch a dbus client, programmed using a Python script, from another script launched using a udev rule (which runs as root), and I need this dbus client to remain running when the script ends. The dbus client to launch is: #!/...
asked by 26.03.2018 / 19:18
2
answers

Problem running crontab every two minutes using the root user

I have a very simple .sh file: echo "\nhola" >> /etc/holaadd.txt I just run it and add a line ... my problem is that I want to add it to: /etc/crontab directly and I added it in the following way: */2 * * * * root /bi...
asked by 23.09.2016 / 00:22
1
answer

How is the integration of 2 htaccess with ptpasswd?

Ask a question and very kind Alvaro has answered, only that I do not understand codes and I do not know how to integrate with path's the question and answer was this:    If I have 2 htaccess files in different directories? Do I need to create...
asked by 22.04.2016 / 20:36
3
answers

Open compiled program in terminal

Hello, I have a console program in C, it compiles well in Ubuntu, but when I open it, it does not generate the console window, I have to open it from the console in order to achieve this. What should I do to have the program open automaticall...
asked by 28.02.2017 / 17:06
2
answers

Find text in several directories [duplicated]

I have a directory with a project: -rw-r--r-- 1 dani staff 18K Mar 4 06:54 LICENSE -rw-r--r-- 1 dani staff 1023 Mar 29 08:06 Makefile -rw-r--r-- 1 dani staff 129 Mar 2 15:33 README.md -rw-r--r-- 1 dani staff 528 Mar 14 16:05 TODO drwxr-...
asked by 31.03.2017 / 17:50
1
answer

Problem with git in local

I have a virtual machine with ubuntu where I have git installed as a server and another with ubuntu that I use as a client. Start the repository on the server and then on the client. In the client I indicate the files with add. , I do the commit...
asked by 18.05.2018 / 20:00
3
answers

Regular expressions in Bash

I'm trying to make a bash script, validate a directory using regular expressions, what I have is the following. echo "Ingresa La ruta de tu directorio" read ruta if [ $ruta != '^/[a-zA-Z]$' ];then echo "No has ingresado una ruta valida, re...
asked by 14.02.2016 / 22:21