If you have some toy boards in your internal network, then you can
happily live without password and key. As I learned today, setting
following stuff in /etc/ssh/sshd_config is not enough:
PermitRootLogin yes
PermitEmptyPasswords yes
| Make plzip compilable on MSYS2+MinGW-w64. | |
| It's Hannes Domani's plzip.patch taken from: | |
| http://download.savannah.gnu.org/releases/lzip/plzip/plzip-1.1-w.zip | |
| that was applied against plzip 1.7: | |
| http://download.savannah.gnu.org/releases/lzip/plzip/plzip-1.7.tar.gz | |
| changed to not artificially limit number of threads (the limit was 32), | |
| and finally diff has been regenerated using output with unified context. | |
| --- a/decompress.cc 2018-02-07 20:17:00.000000000 +0100 |
| #!/bin/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2017 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # | |
| # abuild.sh | |
| # Simplistic abuild wrapper for building packages out-of-the-tree. |
| #!/bin/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2017 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # | |
| # Traffic control - Make DNS requests delayed and low priority on Linux. |
| #!/bin/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2016 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # Reassemble arguments (support-most-cases implementation) |
| Make pigz.c (2.4) compilable on MSYS2+MinGW-w64. | |
| diff --git a/pigz.c b/pigz.c | |
| index bbbfd2cd19a1..85a61eeca674 100644 | |
| --- a/pigz.c | |
| +++ b/pigz.c | |
| @@ -324,6 +324,11 @@ | |
| // Use large file functions if available. | |
| #define _FILE_OFFSET_BITS 64 | |
| Package: * | |
| Pin: release n=jessie-backports | |
| Pin-Priority: 800 | |
| Package: * | |
| Pin: release n=jessie-updates | |
| Pin-Priority: 700 | |
| Package: * | |
| Pin: release n=jessie |
| ### default values: sensitivity=128, speed=97 | |
| ACTION=="add", SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{device/sensitivity}="196", ATTR{device/speed}="255" |
I'm using BakaReader EX (com.erakk.lnreader) as an example.
| # [Arch] List provisions with packages providing them | |
| # pacman-based solution | |
| pacman -Si \ | |
| | awk '/^$/{n=""}/^Name/{n=$3}/^Provides/{if($3!="None"){for(i=3;i<=NF;i++){if(t[$i]=="")t[$i]="";t[$i]=t[$i]" "n}}}END{for(p in t)printf("%44-s :%s\n",p,t[p])}' \ | |
| | sort | less | |
| # expac-based solution (better) | |
| expac -S "%n %P" \ | |
| | awk 'NF>1{for(i=2;i<=NF;i++){if(t[$i]=="")t[$i]="";t[$i]=t[$i]" "$1}}END{for(p in t)printf("%44-s :%s\n",p,t[p])}' \ |