All VMworld US sessions now available on-demand!
All VMworld US sessions now available on-demand!
View videos of VMworld general sessions (main keynotes), showcase keynotes, and breakout sessions on demand.
My little Information Technology blog
All VMworld US sessions now available on-demand!
View videos of VMworld general sessions (main keynotes), showcase keynotes, and breakout sessions on demand.
3 Networking Innovations Businesses Desperately Need
Compared to the rapid pace of cloud and mobile innovation, networking innovation hasn’t happened in years. Companies and analysts alike agree that the network of the past is not built for today’s demands. It doesn’t drive the competitive edge businesses need to stay relevant in our cloud-centric world. “Networking missed out on the evolution to […] The post 3 Networking Innovations Businesses Desperately Need appeared first on VMware Radius .
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
.
VMware Cloud on AWS is GDPR Ready – VMware Cloud Community
On 25 May 2018, the European Union General Data Protection Regulation (GDPR) becomes applicable. The GDPR attempts to unify data protection laws in Europe and certain of its rights and protections are having a global impact. This law sets a new standard for protection of an individual’s personal data and provides individuals specific rights to
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).