For information only.
Download the product UMSKT https://github.com/UMSKT/UMSKT
and use the format umskt -i <Installation ID>
Heisenberg - Digital Alchemist, Software Architect, Automation Specialist and Mechanical Engineer.
For information only.
Download the product UMSKT https://github.com/UMSKT/UMSKT
and use the format umskt -i <Installation ID>
To allow the use of USB, we must add the user to the vboxusers group, this can be done with:
sudo /usr/sbin/usermod -aG vboxusers $USER
substitute $USER for a user other than the current user if needed.
Also worth doing is adding a directory for VM's such as /DATA/VM
We should then change the group to vboxusers by:
sudo chgrp -R vboxusers VM
and also set the group inheritance by
sudo chmod g+s VM
this ensures that any new files also have the vboxusers group.
When working with VB6 and uploading to GitHub, modify the .gitattributes file to look like the below:
For this example, we will be using dnsmasq on Slackware 14.2 with the Slackware 15 mirror.
Open your .bashrc file and add the line export EDITOR=vim
Then logout and back in or source .bashrc
For old password compatibility, do
SET GLOBAL old_passwords = 1;
SET PASSWORD FOR 'repl'@'%' = PASSWORD('the_password');
SET GLOBAL old_passwords = 0;
We can also try SET GLOBAL secure_auth=OFF; however I found this made no difference when running MariaDB 10.5 and attempting to connect with an old (presumable 4.1) client.
On Master, do SELECT @@gtid_current_pos;
then on Slave, do SET GLOBAL gtid_slave_pos = 'GTID_FROM_SERVER_1';
if need be do;
CHANGE MASTER TO
MASTER_HOST='server1',
MASTER_USER='replica_user',
MASTER_PASSWORD='password',
MASTER_USE_GTID=slave_pos;
then;
Start Slave;
SHOW SLAVE STATUS/G;
A note on the above, do it quickly, in case the position changes.
SELECT @@gtid_slave_pos, @@gtid_current_pos; should show the same.
I had a problem with Oracle timeouts when connecting to a remote Oracle database server from within a php page. This resulted in the need to restart Apache to resolve as other web pages were also not available in said situations.