Solution: Ubuntu distros lower than 18.10 will not work in this laptop, as minimum kernal version required is 4.18.
So install ubuntu 18.10 / xubuntu 18.10 / lubuntu 18.10 / kubuntu 18.10 in UEFI mode
Solution: Ubuntu distros lower than 18.10 will not work in this laptop, as minimum kernal version required is 4.18.
So install ubuntu 18.10 / xubuntu 18.10 / lubuntu 18.10 / kubuntu 18.10 in UEFI mode
| #!/bin/bash | |
| set -e | |
| CURRENT_NAME="CurrentName" | |
| CURRENT_OTP="current_name" | |
| NEW_NAME="NewName" | |
| NEW_OTP="new_name" |
| brew install jansson libnice openssl libusrsctp libmicrohttpd libwebsockets cmake rabbitmq-c sofia-sip opus libogg glib pkg-config gengetopt | |
| wget https://github.com/cisco/libsrtp/archive/v1.5.4.tar.gz | |
| tar xvf v1.5.4.tar.gz | |
| cd libsrtp-1.5.4 | |
| ./configure --prefix=/usr/local/libsrtp | |
| make | |
| sudo make install | |
| git clone [email protected]:meetecho/janus-gateway.git |
| # Based on https://github.com/metacollin/homebrew-gnuradio#homebrew-gnuradio and https://github.com/chleggett/homebrew-gqrx#install | |
| $ brew update | |
| $ brew upgrade # may be unnecessary | |
| $ brew tap metacollin/gnuradio | |
| $ brew install gnuradio # took 55 mins on my laptop & installed python via homebrew | |
| $ brew install librtlsdr --HEAD # this installed b4c4e723f3656954f160b3f8df4e8804e4a46acd for me | |
| $ brew tap chleggett/gqrx | |
| $ brew tap chleggett/gr-osmosdr | |
| $ pip install cheetah |
| #!/usr/bin/env bash | |
| # -r 60: 60 FPS | |
| # -y: rewrite output file | |
| # -start_number 11555: first frame number | |
| # -i 'G%07d.JPG': file format | |
| # -vf "crop=h=2250": video filter to crop input frame height from 3000 to 2250 (which will be eventually downscaled to 720) | |
| # -c:v libx264: video codec x264 | |
| # -crf 20: x264 encoding quality (less = better) | |
| # -s 1280x720: output size |
| from __future__ import print_function, division | |
| """ | |
| By Willem Hengeveld <[email protected]> | |
| ecdsa implementation in python | |
| demonstrating several 'unconventional' calculations, | |
| like finding a public key from a signature, | |
| and finding a private key from 2 signatures with identical 'r' | |
| """ |