Skip to content

Tag: debian

How to install mono 3 on Debian testing?

I want to compile the Unreal Engine on my Debian Liunx (testing) box, which needs the mono package libmono-corlib4.0-cil installed that depends on the mono-runtime in version 3. However, on my Debian box I have installed mono in version 4 and libmono-corlib4.5-cil (4.5 instead of 4.0). So I tried to install t…

List all groups on machine via bash script

This code gives me an output of 1000 if I’m a regular user or 0 if I’m root, while executing the same command (cut -d: -f1 /etc/group) returns a list of all the available groups on the machine. I also tried with grep “” /etc/group but that produces the same results. What am I not getti…

How Do I Fix This SED Command to Find & Replace a String

Good-day, I’m working on a Bash script for Debian Jessie and in this line; I am trying to find base_dir}/scripts and replace it with script_dir} so that my new line will read as: This is what I have tried so far; which results in this error; I am confused as to how to resolve this and would appreciate s…