NFS-Server with CentOS 8 / Red Hat 8 for VMware…
A very important tutorial that everyone who cares about their VMware vCenter should take a look at.
My little Information Technology blog
A very important tutorial that everyone who cares about their VMware vCenter should take a look at.
This is a simple process that can be accomplished by running:
firewall-cmd --zone=public --add-port=8080/tcp --permanent
Remember to reload the firewall for the changes to take effect:
firewall-cmd --reload
** Make sure to change the zone type and port number according to what you are looking to open. The above is simply an example.
A nice and easy way to search files for specific content in the files using GREP.
grep -rnw '/path/to/somewhere/' -e 'pattern'
-r
or -R
is recursive,-n
is line number, and-w
stands for match the whole word.-l
(lower-case L) can be added to just give the file name of matching files.Along with these, --exclude
, --include
, --exclude-dir
flags could be used for efficient searching:
grep --include=\*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"
grep --exclude=*.o -rnw '/path/to/somewhere/' -e "pattern"
--exclude-dir
parameter. For example, this will exclude the dirs dir1/, dir2/ and all of them matching *.dst/:
grep --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/somewhere/' -e "pattern"
For more options check man grep
.
New VMware Fling: Horizon DaaS Migration Tool
Horizon DaaS Migration Tool helps migrating from earlier versions of Horizon DaaS (6.1.5, 6.1.6, 7.0.0) to the latest supported version (8.0.0).