You'll need a new app to open this ms-windows-store - Windows 10: "Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}"
'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.
Tuesday, 3 April 2018
Sunday, 11 March 2018
How to install VirtualBox Guest Additions in a Debian virtual machine - Unix & Linux Stack Exchange
How to install VirtualBox Guest Additions in a Debian virtual machine - Unix & Linux Stack Exchange:
For Debian 9, enable backports with contrib repository to /etc/apt/sources.list
Then update and install:
For Debian 9, enable backports with contrib repository to /etc/apt/sources.list
- deb http://ftp.uk.debian.org/debian stretch-backports main contrib
Then update and install:
- sudo apt update
- sudo apt install virtualbox-guest-utils virtualbox-guest-x11 virtualbox-guest-dkms dkms linux-headers-amd64 build-essential
Monday, 1 January 2018
Script to create multiple VM clones
I need a script to create several hundred VM's to load test a new VMWare cluster.
I have found this.
http://www.virtualclouds.co.za/?p=1239
I have found this.
http://www.virtualclouds.co.za/?p=1239
Tuesday, 1 August 2017
Disable USB power saving for booting from USB
Having issues booting from USB connected SSD and disabling this in the Linux Kernal seems to solve the issues of the disk becoming unavailable.
Edit /etc/default/grub and change the following line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash usbcore.autosuspend=-1"
Edit /etc/default/grub and change the following line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash usbcore.autosuspend=-1"
Update the config with: sudo update-grub
Reboot
Thanks to this post.
Chromium Hardware Acceleration Issues on Mint 18,2
I'm currently testing Mint18.2 and have run into a number of issues with Chrome. It initially started with corruption issues in Youtube.
After investigation I discovered that the hardware acceleration had been disabled. By adding the following switches to the 'exec' lines in /opt/google/chrome/google-chrome I was able to force all the acceleration options on:
After investigation I discovered that the hardware acceleration had been disabled. By adding the following switches to the 'exec' lines in /opt/google/chrome/google-chrome I was able to force all the acceleration options on:
- --enable-native-gpu-memory-buffers
- --enable-zero-copy
- --disable-gpu-driver-bug-workarounds
- --ignore-gpu-blacklist
- --enable-gpu-rasterization
- --enable-checker-imaging
I added these to the file by editing it with root (sudo) options. I suspect the file will be overwritten on update. There seems to be an environment variable for chromium which allows you to set command line options to pass to chromium without editing files, but I can't tell if this works for Chrome yet.
Sunday, 2 July 2017
Unable to update Skype because of GPG error
Recently installed NHSbuntu on an SSD and added Skype but kept getting the following error when trying to run 'apt update':
W: GPG error: https://repo.skype.com/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1F3045A5DF7587C3
Thanks to QwertyChouskie over at this thread for the answer:
'curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -'
W: GPG error: https://repo.skype.com/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1F3045A5DF7587C3
Thanks to QwertyChouskie over at this thread for the answer:
'curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -'
Wednesday, 14 June 2017
June 2017 security update release – MSRC
Yet another set of security updates beyond Windows 7.
June 2017 security update release – MSRC:
Advisory is 4025685:
https://support.microsoft.com/en-us/help/4025687/microsoft-security-advisory-4025685-guidance-for-older-platforms
'via Blog this'
June 2017 security update release – MSRC:
Advisory is 4025685:
https://support.microsoft.com/en-us/help/4025687/microsoft-security-advisory-4025685-guidance-for-older-platforms
'via Blog this'
Tuesday, 30 May 2017
Bug #1587975 “packagekitd eats all the CPU” : Bugs : AppCenter
Bug #1587975 “packagekitd eats all the CPU” : Bugs : AppCenter:
Elementary OS problems with packagekitd using all CPU after installation of Skype.
Seems that the Skype repo doesn't add the GPG key properly.
I only had to run these lines:
curl https:/ /repo.skype. com/data/ SKYPE-GPG- KEY | sudo apt-key add -
sudo apt update
'via Blog this'
Elementary OS problems with packagekitd using all CPU after installation of Skype.
Seems that the Skype repo doesn't add the GPG key properly.
I only had to run these lines:
curl https:/
sudo apt update
'via Blog this'
Monday, 29 May 2017
elementary OS Snippets: Add My Weather Indicator To Wingpanel
elementary OS Snippets: Add My Weather Indicator To Wingpanel: My-Weather-Indicator is a ( Wing )panel-based weather applet that can show weather conditions, a forecast, a forecast map and check sunrise ...
I had to install software-properties-common before I could add the repository:
sudo apt install software-properties-common
sudo add-apt-repository ppa:atareao/atareao
sudo apt-get update
sudo apt-get install my-weather-indicator
I had to install software-properties-common before I could add the repository:
sudo apt install software-properties-common
sudo add-apt-repository ppa:atareao/atareao
sudo apt-get update
sudo apt-get install my-weather-indicator
Saturday, 27 May 2017
Installing Virtualbox Guest modules into Devuan
This involves the following:
1. Remove the cdrom as a package source
2. Add jessie-backports as a package source
3. Update the installation
1. Remove the cdrom as a package source
As a privileged user, edit the /etc/apt/sources.list file and put a hash character in front of any line starting with 'deb cdrom':
$ sudo vi /etc/apt/sources.list
2. Add jessie-backports as a package source
Add the following three lines (if you're using the GB mirror) to your sources.list:
# jessie-backports
deb http://gb.mirror.devuan.org/merged/ jessie-backports main contrib
deb-src http://gb.mirror.devuan.org/merged/ jessie-backports main contrib
Adjust the URL if you are using a different mirror to what you are using for e.g. jessie-updates
3. Update the installation
$ sudo apt update
$ sudo apt dist-upgrade
$ sudo apt autoremove
$ sudo apt autoclean
4. Identify your kernel architecture:
$ uname -a
Linux devuan 3.16.0-4-amd64 #1 SMP Debian 3.16.43-2 (2017-04-30) x86_64 GNU/Linux
1. Remove the cdrom as a package source
2. Add jessie-backports as a package source
3. Update the installation
4. Add the required packages
1. Remove the cdrom as a package source
As a privileged user, edit the /etc/apt/sources.list file and put a hash character in front of any line starting with 'deb cdrom':
$ sudo vi /etc/apt/sources.list
2. Add jessie-backports as a package source
Add the following three lines (if you're using the GB mirror) to your sources.list:
# jessie-backports
deb http://gb.mirror.devuan.org/merged/ jessie-backports main contrib
deb-src http://gb.mirror.devuan.org/merged/ jessie-backports main contrib
Adjust the URL if you are using a different mirror to what you are using for e.g. jessie-updates
3. Update the installation
$ sudo apt update
$ sudo apt dist-upgrade
$ sudo apt autoremove
$ sudo apt autoclean
4. Identify your kernel architecture:
$ uname -a
Linux devuan 3.16.0-4-amd64 #1 SMP Debian 3.16.43-2 (2017-04-30) x86_64 GNU/Linux
4. Add the required packages, replace amd64 with the architecture identified above as appropriate:
$ sudo apt install virtualbox-guest-utils virtualbox-guest-x11 virtualbox-guest-dkms dkms linux-headers-amd64 build-essential
Friday, 26 May 2017
Samba - Security Announcement Archive
Now it's SAMBA's turn with CVE-2017-7494.
Either upgrade to latest version, or put 'nt pipe support = no' into [global] section of smb.conf and restart smbd.
Samba - Security Announcement Archive:
'via Blog this'
Either upgrade to latest version, or put 'nt pipe support = no' into [global] section of smb.conf and restart smbd.
Samba - Security Announcement Archive:
'via Blog this'
Thursday, 25 May 2017
Immunet - Cisco Talos
Free cloud and social networking based malware and antivirus protection systems from Cisco\Talos that can run as a companion to your existing antivirus.
Immunet - Cisco Talos:
'via Blog this'
Immunet - Cisco Talos:
'via Blog this'
DNS Security with DNSCrypt | OpenDNS
Prevent your ISP collecting your DNS lookups.
Use DNSCrypt with OpenDNS.
DNS Security with DNSCrypt | OpenDNS:
'via Blog this'
Use DNSCrypt with OpenDNS.
DNS Security with DNSCrypt | OpenDNS:
'via Blog this'
Saturday, 6 May 2017
openvas | sil3ntcor3 ramblings
Running an 'apt dist-upgrade' on my Parrotsec install updated the version of OpenVAS and it would not longer start. I could see a message about "wrong database version" on feed update.
The link below got me up and running again.
openvas | sil3ntcor3 ramblings:
I had to run:
'via Blog this'
The link below got me up and running again.
openvas | sil3ntcor3 ramblings:
I had to run:
- openvasmd --migrate
- openvasmd --update
'via Blog this'
Wednesday, 26 April 2017
Windows 10 Creators Update bumped to build 15063.250 with KB4016240 | On MSFT
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 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'
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
Subscribe to:
Posts (Atom)