Install the printer driver locally.
Store HOSTNAME share credentials from the command line:
cmdkey /add:HOSTNAME /user:USER /pass:PASS
Open the control panel (For Windows 11: Windows Settings > Bluetooth & Devices
| server: | |
| sudo su | |
| apt update | |
| apt install -y nfs-kernel-server | |
| mkdir -p /mnt/nfsdir | |
| chown nobody:nogroup /mnt/nfsdir | |
| chmod 777 /mnt/nfsdir | |
| vim /etc/exports | |
| add a line: /mnt/nfsdir CLIENT_IP_HERE(rw,sync,no_subtree_check) |
Don't use snap on Ubuntu! It will be hard to get help, diagnose issues - because it's not a widely used environment.
Taken from https://docs.docker.com/engine/install/ubuntu/
sudo suapt-get updateapt-get install \
apt-transport-https \
| from setuptools import find_packages, setup | |
| from package import Package | |
| setup( | |
| name='packagename', | |
| url='http://example.com/packagename' | |
| author='Author Name', | |
| author_email='[email protected]', | |
| packages=find_packages(), | |
| include_package_data=True, |
| from setuptools import Command | |
| import shlex | |
| import subprocess | |
| import os | |
| WHEELHOUSE = "wheelhouse" | |
| class Package(Command): | |
| """Package Code and Dependencies into wheelhouse""" |
| # Manifest syntax https://docs.python.org/2/distutils/sourcedist.html | |
| graft wheelhouse | |
| recursive-exclude __pycache__ *.pyc *.pyo *.orig | |
| exclude *.js* | |
| exclude *.git* | |
| exclude *.coveragerc | |
| exclude *.sh | |
| exclude proc* |