Windows 10 Creators Update bumped to build 15063.250 with KB4016240 | On MSFT:
I'm hopeful the browser memory leak fix ss the one I observed and reported with regards to the Jetstream tests at http://browserbench.org/JetStream/ .
Edit: Edge still uses GB of memory and eventually crashes and returns to the start page before completing three runs of the test. Not sure if this is an Edge issue, or a combination of Edge and Sophos client v10.7. The same behaviour was seen with Sophos v10.6.
'via Blog this'
I'm just a simple techie who sometimes forgets things. I use this as a notepad to remember things by. I hope it helps you too. I post as myself, not as any organisation.
Wednesday, 26 April 2017
Monday, 24 April 2017
Add a Report Phishing Button in Outlook -
Add a Report Phishing Button in Outlook -: "BccEmailAddress"
This will allow you to customise the Microsoft SPAM\PHISHING reporter to send to additional mail addresses such as a service desk and email provider.
More details on the reg entries at this site:
https://technet.microsoft.com/en-us/library/jj723139(v=exchg.150).aspx
'via Blog this'
This will allow you to customise the Microsoft SPAM\PHISHING reporter to send to additional mail addresses such as a service desk and email provider.
More details on the reg entries at this site:
https://technet.microsoft.com/en-us/library/jj723139(v=exchg.150).aspx
'via Blog this'
Saturday, 22 April 2017
Release of SWA v4.3.1.4 - Chrome and SSL decryption - Blog - Web Appliance - Sophos Community
Release of SWA v4.3.1.4 - Chrome and SSL decryption - Blog - Web Appliance - Sophos Community:
Updating to v4.3.1.4 fixes the issue with Chrome v58 objecting to HTTPS inspection.
'via Blog this'
Updating to v4.3.1.4 fixes the issue with Chrome v58 objecting to HTTPS inspection.
'via Blog this'
Saturday, 18 February 2017
Playing with Open vStorage and Docker - Open vStorage BlogOpen vStorage Blog
Playing with Open vStorage and Docker - Open vStorage BlogOpen vStorage Blog:
Very interesting article on how to get vStorage up and running under Docker within VirtualBox. I managed to get a single node up easily but there were a few errors on adding the second node. vStorage seems to be a virtual storage solution that's able to replicate across disks, servers and locations while supporting compression, dedupe and encryption.
The line 'gzip -dc ovshc_unstable_img.tar.gz | docker load' should read 'gzip -dc ovshc_unstable_img.tar.gz | sudo docker load' and the URL to access the GUI should read https://IP_Address_of_VM.
Starting the second node seems to hang on the command 'sudo ./ovscluster.sh join ovshc2 10.250.0.2/16' hung with the status 'Status: Downloaded newer image for docker.openvstorage.org/ovshc/unstable:latest4417288f5ad21f5577e3fb4fe6ba25f4af0e71c277ab4d2cf554521c517469e6' and nothing else seems to happen after this.
I'd really like to see a tutorial to set this up on a physical Ubuntu server with RDMA but I can't seem to leave a comment on the blog. :(
Good article though, and thanks!
'via Blog this'
Very interesting article on how to get vStorage up and running under Docker within VirtualBox. I managed to get a single node up easily but there were a few errors on adding the second node. vStorage seems to be a virtual storage solution that's able to replicate across disks, servers and locations while supporting compression, dedupe and encryption.
The line 'gzip -dc ovshc_unstable_img.tar.gz | docker load' should read 'gzip -dc ovshc_unstable_img.tar.gz | sudo docker load' and the URL to access the GUI should read https://IP_Address_of_VM.
Starting the second node seems to hang on the command 'sudo ./ovscluster.sh join ovshc2 10.250.0.2/16' hung with the status 'Status: Downloaded newer image for docker.openvstorage.org/ovshc/unstable:latest4417288f5ad21f5577e3fb4fe6ba25f4af0e71c277ab4d2cf554521c517469e6' and nothing else seems to happen after this.
I'd really like to see a tutorial to set this up on a physical Ubuntu server with RDMA but I can't seem to leave a comment on the blog. :(
Good article though, and thanks!
'via Blog this'
Monday, 23 January 2017
Join.me showing a black shared screen on Windows 10
I solved this by using the Radeon Firepro settings app to use power saving for the join.me.exe file.
This forced Join.me to run under the Intel HD5500 card, and the graphics display correctly at the remote end.
This forced Join.me to run under the Intel HD5500 card, and the graphics display correctly at the remote end.
Thursday, 29 December 2016
Install Security Onion 14.04 into VirtualBox
Had some issues getting the guest additions working, but the following fixed it for me.
1. Make sure everything is up to date:
1. Make sure everything is up to date:
- sudo apt update
- sudo apt upgrade
- sudo apt dist-upgrade
- sudo apt-get autoremove
- sudo apt-get autoclean
2. Make sure the correct Xorg is installed:
- sudo apt install xserver-xorg-core
3. Install the guest utils and DKMS from the repo:
- sudo apt install virtualbox-guest-utils virtualbox-guest-x11 virtualbox-guest-dkms dkms
4. Reboot and cleanup:
- sudo reboot
- sudo apt-get autoremove
- sudo apt-get autoclean
Tuesday, 27 December 2016
Snort\Barnyard2\Snorby running on x86 Ubuntu 14.04
I followed this basic guide:
http://www.ubuntu-howtodoit.com/?p=138
Step 5.2 I had to adjust the line:
./configure --with-mysql --with-mysql-libraries=/usr/lib/x86_64-linux-gnu
To the following line as I am running an x86 install on this old server:
:~$ ./configure --with-mysql --with-mysql-libraries=/usr/lib/i386-linux-gnu
Step 7, I pulled the Upstart scripts from the following:
https://s3.amazonaws.com/snort-org-site/production/document_files/files/000/000/090/original/Snort_2.9.8.x_on_Ubuntu_12-14-15.pdf
This was due to Ubuntu 14.04 running Upstart rather than Systemd.
Section 8.12 - As I was running Nginx rather than Apache2, I followed this:
https://www.digitalocean.com/community/tutorials/how-to-deploy-a-rails-app-with-passenger-and-nginx-on-ubuntu-14-04
This page to configure Passenger:
https://www.phusionpassenger.com/library/install/nginx/install/oss/trusty/
The contents of /etc/nginx/passenger.conf that worked for me was:
passenger_root /usr/local/lib/ruby/gems/2.3.0/gems/passenger-5.1.1;
passenger_ruby /usr/local/bin/ruby;
http://www.ubuntu-howtodoit.com/?p=138
Step 5.2 I had to adjust the line:
./configure --with-mysql --with-mysql-libraries=/usr/lib/x86_64-linux-gnu
To the following line as I am running an x86 install on this old server:
:~$ ./configure --with-mysql --with-mysql-libraries=/usr/lib/i386-linux-gnu
Step 7, I pulled the Upstart scripts from the following:
https://s3.amazonaws.com/snort-org-site/production/document_files/files/000/000/090/original/Snort_2.9.8.x_on_Ubuntu_12-14-15.pdf
This was due to Ubuntu 14.04 running Upstart rather than Systemd.
Section 8.12 - As I was running Nginx rather than Apache2, I followed this:
https://www.digitalocean.com/community/tutorials/how-to-deploy-a-rails-app-with-passenger-and-nginx-on-ubuntu-14-04
This page to configure Passenger:
https://www.phusionpassenger.com/library/install/nginx/install/oss/trusty/
The contents of /etc/nginx/passenger.conf that worked for me was:
passenger_root /usr/local/lib/ruby/gems/2.3.0/gems/passenger-5.1.1;
passenger_ruby /usr/local/bin/ruby;
I still have an issue with the web page comlaning that the snorby worker isn't running, yet it is running from an upstart script.
I'll look at that another day!
Saturday, 24 December 2016
Sunday, 20 November 2016
Windows Containers on Windows 10 Anniversary Edition
Quickstart guide on how to run Docker and Containers on Windows 10 anniversary edition.
Works nicely with the Windows Server 2016 Container videos from Microsoft Ignite here:
https://www.youtube.com/playlist?list=PL_AEfBHGUiI9SmGakvrqvG-jZnicHKWh0
Couple of corrections I had to make:
1. Replace the Docker download URL with https://master.dockerproject.org/windows/amd64/docker-1.14.0-dev.zip instead of v1.13.
2. The Docker CLI didn't work for me until I restarted PowerShell.
Windows Container on Windows 10:
'via Blog this'
Works nicely with the Windows Server 2016 Container videos from Microsoft Ignite here:
https://www.youtube.com/playlist?list=PL_AEfBHGUiI9SmGakvrqvG-jZnicHKWh0
Couple of corrections I had to make:
1. Replace the Docker download URL with https://master.dockerproject.org/windows/amd64/docker-1.14.0-dev.zip instead of v1.13.
2. The Docker CLI didn't work for me until I restarted PowerShell.
Windows Container on Windows 10:
'via Blog this'
Sunday, 23 October 2016
How to turn off preview globally for Evolution 3.22.1
I finally found a way to do this.
First, I installed dconf-editor:
sudo apt install dconf-editor
I then started this up and navigated to the following place:
/org/gnome/evolution/mail
I then scrolled down to the global-view-setting.
I set the Use default value to OFF, and then set the Custom value to True,
Once I turned off the preview for the Inbox, it was gone for all other message folders too:
View > Preview > Uncheck Show Message preview.
You can also use Ctrl+M to toggle this on and off.
First, I installed dconf-editor:
sudo apt install dconf-editor
I then started this up and navigated to the following place:
/org/gnome/evolution/mail
I then scrolled down to the global-view-setting.
I set the Use default value to OFF, and then set the Custom value to True,
Once I turned off the preview for the Inbox, it was gone for all other message folders too:
View > Preview > Uncheck Show Message preview.
You can also use Ctrl+M to toggle this on and off.
Setting up NHS Mail 2 in Evolution v3.22.1
I've had a number of issues setting up NHS Mail 2 in Evolution and after having installed Ubuntu Gnome 16.10 this weekend I decided I'd have another go.
First of all, I had to add the Evolution EWS service which wasn't installed by default:
sudo apt install evolution-ews
Once that was installed, I was able to go through the account setup:
Edit > Preferences > Mail Accounts > Add
The auto discovery failed, but by manually setting the type to Evolution EWS I was able to get it working.
The magic URL that worked for me was:
https://mail.nhs.net/EWS/Exchange.asmx
Once that was set, I was able to get the OAB URL too by clicking on the Fetch URL button.
The critical step was to set NTLM as the authentication type rather than Kerberos. The option to discover auth type kept saying that Kerberos was valid, but when I tried it I kept getting an SPEGNO error message saying authentication had failed.
You have to be careful not to store your NHS Mail 2 password in the security otherwise it will eventually lock your account.Still working out how to remove it tf you have done this as I can't find the password in seahorse (Passwords and Keys). If you do accidently store the password in your keyring, you can find and delete it by running seahorse from the terminal or Passwords and Keys from the GUI and search for Evolution Data Source.
I'm not entirely sure that NTLM on EWS is a good authentication method to use with NHS Mail 2 so I will be following this up with Accenture when I'm back at work - Not sure what kind of reception I will get to that though.
Anyone have any thoughts of the merits of NTLM vs Kerberos authentication in an Internet facing application such as EWS?
First of all, I had to add the Evolution EWS service which wasn't installed by default:
sudo apt install evolution-ews
Once that was installed, I was able to go through the account setup:
Edit > Preferences > Mail Accounts > Add
The auto discovery failed, but by manually setting the type to Evolution EWS I was able to get it working.
The magic URL that worked for me was:
https://mail.nhs.net/EWS/Exchange.asmx
Once that was set, I was able to get the OAB URL too by clicking on the Fetch URL button.
You have to be careful not to store your NHS Mail 2 password in the security otherwise it will eventually lock your account.
I'm not entirely sure that NTLM on EWS is a good authentication method to use with NHS Mail 2 so I will be following this up with Accenture when I'm back at work - Not sure what kind of reception I will get to that though.
Anyone have any thoughts of the merits of NTLM vs Kerberos authentication in an Internet facing application such as EWS?
Monday, 17 October 2016
Taking backup of encrypted Azure VMs with ADE (Azure Disk Encryption) using Azure Backup in OMS | Building Clouds
Taking backup of encrypted Azure VMs with ADE (Azure Disk Encryption) using Azure Backup in OMS | Building Clouds:
How to enable Azure Disk Encryption (ADE) so you can still use the Azure Backup Service. If you only use BEK (Bitlocker in the VM) then that is incompatible with the backups.
'via Blog this'
How to enable Azure Disk Encryption (ADE) so you can still use the Azure Backup Service. If you only use BEK (Bitlocker in the VM) then that is incompatible with the backups.
'via Blog this'
Sunday, 9 October 2016
Screen tearing with Intel HD 5500 on HP ZBook 15 G2 and Ubuntu 16.10 Beta 2
I've been suffering some screen tearing with the discrete Intel HD5500 on my HP ZBook 15 G2 laptop and Ubuntu 16.10 Beta 2.
Found various posts stating to create the file /usr/share/X11/xorg.conf.d/20-intel.conf containing the following information:
Section "Device"
Identifier "Intel Graphics"
Driver "Intel"
Option "TearFree" "true"
EndSection
Found various posts stating to create the file /usr/share/X11/xorg.conf.d/20-intel.conf containing the following information:
Section "Device"
Identifier "Intel Graphics"
Driver "Intel"
Option "TearFree" "true"
EndSection
Note: When I created this files with tabs, it hung the X startup so probably best not to include any extra spaces or tab characters.
This video now plays fine. :)
Thanks to this post and this post.
I've now looked at this again in Ubuntu 17.04 beta 2, and added the following two lines to sort out issues with the Chrome address bar flickering:
Option "AccelMethod" "sna"
Option "DRI" "3"
I did not have to change any switches used to startup Chrome 57.
This thread helped a lot.
I've now looked at this again in Ubuntu 17.04 beta 2, and added the following two lines to sort out issues with the Chrome address bar flickering:
Option "AccelMethod" "sna"
Option "DRI" "3"
I did not have to change any switches used to startup Chrome 57.
This thread helped a lot.
Labels:
16.10,
17.04,
Beta 2,
Chrome,
flicker,
hd5500,
intel,
Linux,
screen,
tearing,
Ubuntu,
video tearing
Wednesday, 5 October 2016
Opt-In to Microsoft Update (Windows)
Opt-In to Microsoft Update (Windows): "
Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
ServiceManager.ClientApplicationID = "My App"
'add the Microsoft Update Service, GUID
Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")"
'via Blog this'
Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
ServiceManager.ClientApplicationID = "My App"
'add the Microsoft Update Service, GUID
Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")"
'via Blog this'
Sunday, 4 September 2016
YUM/DNF Remove Old Kernels on Fedora/CentOS/RHEL | If Not True Then False
YUM/DNF Remove Old Kernels on Fedora/CentOS/RHEL | If Not True Then False:
Install yum-utils to allow:
package-cleanup --oldkernels --count = 2
'via Blog this'
Install yum-utils to allow:
package-cleanup --oldkernels --count = 2
'via Blog this'
Sunday, 28 August 2016
Crappy Netflix Playback? Here’s How to Test Your Streaming Speed | WIRED
Google Chrome will play NetFlix on Linux but Chromium will not.
Linux is therefore limited to 720 and not 1080 as it doesn't run crappy IE or Edge.
Crappy Netflix Playback? Here’s How to Test Your Streaming Speed | WIRED:
'via Blog this'
Linux is therefore limited to 720 and not 1080 as it doesn't run crappy IE or Edge.
Crappy Netflix Playback? Here’s How to Test Your Streaming Speed | WIRED:
'via Blog this'
Screen tearing problem on Cub Linux
I've been testing Cub Linux RC1 (based upon Ubuntu 14.04) and had some problems with video playback. After some research I found that editing ~/.config/compton.conf and changing the following lines removed the issue:
Replace backend = "xrender"; with backend = "glx";
Replace vsync = "none"; with vsync = "opengl";
Note: This works fine on the Integrated Intel HD5500 graphics but still produces tearing if I switch to the Radeon Discrete graphics. Not sure if I can find a setting that works with both... Thoughts?
Replace backend = "xrender"; with backend = "glx";
Replace vsync = "none"; with vsync = "opengl";
Note: This works fine on the Integrated Intel HD5500 graphics but still produces tearing if I switch to the Radeon Discrete graphics. Not sure if I can find a setting that works with both... Thoughts?
How to force Linux appliaction to run using discrete graphics card
On a laptop with integrated (Intel HD5500) and discrete (AMD Radeon R7 M265) the applications startup using the integrated graphics by default. setting the variable DRI_PRIME=1 causes the applications to use the discrete graphics instead.
e.g.
"glmark2" runs on the integrated graphics vs "DRI_PRIME=1 glmark2" runs on the discrete graphics.
"chromium-browser" runs on the integrated graphics vs "DRI_PRIME=1 chromium-browser" runs on the discrete graphics.
You can also force the use of radeon graphics by the use of a grub flag.
ati - Very Low Temperature Reading for graphics driver using lm-sensors - Ask Ubuntu:
'via Blog this'
e.g.
"glmark2" runs on the integrated graphics vs "DRI_PRIME=1 glmark2" runs on the discrete graphics.
"chromium-browser" runs on the integrated graphics vs "DRI_PRIME=1 chromium-browser" runs on the discrete graphics.
You can also force the use of radeon graphics by the use of a grub flag.
ati - Very Low Temperature Reading for graphics driver using lm-sensors - Ask Ubuntu:
'via Blog this'
How to force Linux appliaction to run using discrete graphics card
On a laptop with integrated (Intel HD5500) and discrete (AMD Radeon R7 M265) the applications startup using the integrated graphics by default. setting the variable DRI_PRIME=1 causes the applications to use the discrete graphics instead.
e.g.
"glmark2" runs on the integrated graphics vs "DRI_PRIME=1 glmark2" runs on the discrete graphics.
"chromium-browser" runs on the integrated graphics vs "DRI_PRIME=1 chromium-browser" runs on the discrete graphics.
You can also force the use of radeon graphics by the use of a grub flag.
ati - Very Low Temperature Reading for graphics driver using lm-sensors - Ask Ubuntu:
'via Blog this'
e.g.
"glmark2" runs on the integrated graphics vs "DRI_PRIME=1 glmark2" runs on the discrete graphics.
"chromium-browser" runs on the integrated graphics vs "DRI_PRIME=1 chromium-browser" runs on the discrete graphics.
You can also force the use of radeon graphics by the use of a grub flag.
ati - Very Low Temperature Reading for graphics driver using lm-sensors - Ask Ubuntu:
'via Blog this'
How to force Linux appliaction to run using discrete graphics card
On a laptop with integrated (Intel HD5500) and discrete (AMD Radeon R7 M265) the applications startup using the integrated graphics by default. setting the variable DRI_PRIME=1 causes the applications to use the discrete graphics instead.
e.g.
"glmark2" runs on the integrated graphics vs "DRI_PRIME=1 glmark2" runs on the discrete graphics.
"chromium-browser" runs on the integrated graphics vs "DRI_PRIME=1 chromium-browser" runs on the discrete graphics.
You can also force the use of radeon graphics by the use of a grub flag.
ati - Very Low Temperature Reading for graphics driver using lm-sensors - Ask Ubuntu:
'via Blog this'
e.g.
"glmark2" runs on the integrated graphics vs "DRI_PRIME=1 glmark2" runs on the discrete graphics.
"chromium-browser" runs on the integrated graphics vs "DRI_PRIME=1 chromium-browser" runs on the discrete graphics.
You can also force the use of radeon graphics by the use of a grub flag.
ati - Very Low Temperature Reading for graphics driver using lm-sensors - Ask Ubuntu:
'via Blog this'
Subscribe to:
Posts (Atom)