Heisenberg - Digital Alchemist, Software Architect, Automation Specialist and Mechanical Engineer.
Labels
Friday, 22 November 2019
Updating java GUI components
see also: java-threads.html
Connect to Windows share from Linux command line.
smbclient //IP_ADDRESS/SHARE_NAME -U username
smbclient //192.168.254.198/public -U username
Then you will be promted for the password and find yourself at the smb: \> prompt.
You can then use;
ls for a listing of files
get filename to grab a file
cd folder to change directory
...etc
exit to exit
Thursday, 21 November 2019
Java Threads and populating a list in real time
{
@Override
public void run()
{
//do Work here...
}
});
t.start();
Java jList
Thursday, 14 November 2019
Setup Postgres on Slackware
TODO: Add Slackware install
Wednesday, 13 November 2019
Python reading file error - 'utf-8' codec can't decode byte
When reading in a file and getting errors such as example:
'utf-8' codec can't decode byte 0xa3 in position 2897: invalid start byte
Add errors='ignore' as per the following example:
with open(fname,"r", errors='ignore') as fo:
Tuesday, 5 November 2019
Saturday, 2 November 2019
Install docker on Slackware
https://slackware.pkgs.org/
quick notes
google-go-lang-1.10.2-x86_64-1_slonly.txz
tini-0.13.0_949e6fa-x86_64-1_slonly.txz
docker-proxy-20180412_c15b372-x86_64-1_slonly.txz
libseccomp-2.3.3-x86_64-1_slonly.txz
runc-1.0.0_rc5-x86_64-1_slonly.txz
containerd-1.0.3-x86_64-1_slonly.txz
docker-18.03.1-x86_64-1_slonly.txz
Revised Sep 2024
Revisited Aug 2024
The below is related to Slackware 15 and used the sbopkg method, see here for more information about getting sbopkg up and running.
So, I set about building Docker using the following order:
which is required to satisfy dependencies.Once google-go-lang was installed, the build or runc failed and I found my way to the solution [here]. Essentially, you should build and install google-go-lang and then log out and back in before continuing with runc.
Once the above was done, or running the shell script at /etc/profile.d/go.sh then was good to continue (note, I done this using my current user, with and without sudo and also as root. I eventually had to open a new terminal to get it to work without error).
Once complete, do;
sudo groupadd -r docker
sudo usermod -a -G docker <username>
Note:
In hindslight, this should be added to the above packages order, after docker itself.
References
https://slackbuilds.org/repository/15.0/system/docker/
Change form GPT to MBR partition types
disk /dev/sda (assuming the drive is sda)
Then use the x option (extra functionality)
then use option z to destroy GPT
Now you can use cfdisk /dev/sda as per normal and choose DOS
Tested on Slackware 14.2