sudo apt-get install python3-uno
% dpkg-query -L python3-uno | grep dist
Change this path as required
% export PYTHONPATH=/usr/lib/python3/dist-packages
When installing Linux Mint, you can install with ZFS Root by following standard instructions. | |
However, there is an issue with almost all Linux distributions default ZFS install script where the | |
allocated spaces for the partitions are a bit too small for real world ZFS Use. | |
These instructions show how to alter the ZFS setup script to have a more appropriate partition spacing. | |
Boot into the Linux Mint OS USB stick, and: | |
``` | |
sudo su | |
cd /usr/share/ubiquity/ |
$userPath = $env:USERPROFILE | |
$pathExclusions = New-Object System.Collections.ArrayList | |
$processExclusions = New-Object System.Collections.ArrayList | |
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null | |
$pathExclusions.Add('C:\Windows\assembly') > $null | |
$pathExclusions.Add($userPath + '\Downloads\HeidiSQL_11.3_64_Portable') > $null | |
$pathExclusions.Add($userPath + '\.dotnet') > $null |
Note: This gist may be outdated, thanks to all contributors in comments.
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
#!/usr/bin/env bash | |
# Adapted from https://github.com/zfsonlinux/zfs/wiki/Ubuntu-18.04-Root-on-ZFS | |
# Should be executed from a live CD environment | |
set -e | |
## CONFIG VARS | |
set -x | |
# Disk drive ids (symlinks in /dev/disk/by-id) | |
bootdisk='usb-SanDisk_Cruzer_AAAAAAAAAAAAAAAAAAAA-0:0' | |
rdisk1='ata-SanDisk_SDSSDHII120G_AAAAAAAAAAAA' |
Any directory with __init__.py
is considered a package in Python.
Any python files inside a package is considered a module.
Modules contain functions and other bindings that is always exported.
If you are outside the package, and you want to import a module from a package:
If your running a x64 bit Ubuntu or other Linux and find USB transfers hang at the end apply this fix:
echo $((16*1024*1024)) > /proc/sys/vm/dirty_background_bytes
echo $((48*1024*1024)) > /proc/sys/vm/dirty_bytes
I suggest you edit your /etc/rc.local
file to make this change persistant across reboots.
sudo nano /etc/rc.local
get-process | where { $_.name -match "WebDev" -or $_.name -match "IISExpress" } | kill |
Installing CYGWIN with SSH | |
1) Download cygwin setup.exe from http://www.cygwin.com | |
- Execute setup.exe | |
- Install from internet | |
- Root directory: `c:\cygwin` + all users | |
- Local package directory: use default value | |
- Select a mirror to download files from | |
- Select these packages: | |
- editors > xemacs 21.4.22-1 | |
- net > openssh 6.1-p |