Import public gpg key
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 74A941BA219EC810
edit /etc/apt/sources.list and add:
deb http://deb.torproject.org/torproject.org trusty main
Install tor
| 0 pablo:4@~$ sudo curl --unix-socket /var/run/docker.sock http:/info | |
| [sudo] password for pablo: | |
| {"ID":"TJFZ:2LQG:IURD:HYQM:PIJQ:2HJA:KWX6:WEBU:YPRQ:6KJX:OI6R:WPLS","Containers":14,"ContainersRunning":0,"ContainersPaused":0,"ContainersStopped":14,"Images":32,"Driver":"devicemapper","DriverStatus":[["Pool Name","docker-253:0-409604-pool"],["Pool Blocksize","65.54 kB"],["Base Device Size","10.74 GB"],["Backing Filesystem","ext4"],["Data file","/dev/loop0"],["Metadata file","/dev/loop1"],["Data Space Used","8.064 GB"],["Data Space Total","107.4 GB"],["Data Space Available","3.673 GB"],["Metadata Space Used","8.294 MB"],["Metadata Space Total","2.147 GB"],["Metadata Space Available","2.139 GB"],["Udev Sync Supported","true"],["Deferred Removal Enabled","false"],["Deferred Deletion Enabled","false"],["Deferred Deleted Device Count","0"],["Data loop file","/var/lib/docker/devicemapper/devicemapper/data"],["Metadata loop file","/var/lib/docker/devicemapper/devicemapper/metadata"],["Library Version","1.02.122 (2016- |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378498): Version: 1.0.17-20161003160026+ecdaf34 | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378499): Error: Error: No installer path | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378610): RPC [I] localhost: connection established | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378715): Check bounds: { x: 7, y: 378, width: 800, height: 625 } { x: 0, y: 0, width: 1920, height: 1080 } { x: 0, y: 0, width: 1920, height: 1080 } | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378769): Opened at login: false | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378769): Is restore: false | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378769): Open hidden: false | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378769): Hide main window: true | |
| log: Thu Oct 06 2016 10:59:38 GMT+0200 (CEST) (1475744378769): Hide dock icon: false | |
| From Keybase: log: Thu Oct 06 2016 10:59:40 GMT+0200 (CEST) (1475744380101): Transport using /run/ |
| [Unit] | |
| Description=Unified Remote Server | |
| After=syslog.target network.target | |
| [Service] | |
| Type=forking | |
| PIDFile=$HOME/.urserver/urserver.pid | |
| ExecStart=/opt/urserver/urserver-start --no-manager --no-notify | |
| ExecStop=/opt/urserver/urserver-stop |
Import public gpg key
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 74A941BA219EC810
edit /etc/apt/sources.list and add:
deb http://deb.torproject.org/torproject.org trusty main
Install tor
| <?php | |
| $mac_address = "FC:FB:FB:01:FA:21"; | |
| $url = "https://api.macvendors.com/" . urlencode($mac_address); | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, $url); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
| $response = curl_exec($ch); | |
| if($response) { | |
| echo "Vendor: $response"; |
From https://github.com/jeqo/kafka-mirror-maker-ops
sudo docker-compose up -d
sudo make kafka-topics
| # rsync with progress percentage | |
| > rsync -ah --no-inc-recursive --info=progress2 source destination |
We want to migrate from Home Assistant Container (docker-compose.yml) to Home Assistant Supervised.
The main idea is to copy the /config file from docker container to main Home Assistant Supervised config folder (/usr/share/hassio/homeassistant by default)
To do so, first we need the path to the source /config folder, in my case /root/compose/ha/config
Then we need to know the path to the destination /config folder, /usr/share/hassio/homeassistant using Home Assistant Supervised default installation
The steps are:
| version: '3' | |
| services: | |
| graphite: | |
| # Not working due to a configuration error :( | |
| image: graphiteapp/graphite-statsd:latest | |
| container_name: graphite | |
| hostname: graphite | |
| volumes: |
| FROM maven:3.3.3 | |
| WORKDIR / | |
| COPY ./tlsh/src src | |
| COPY ./pom.xml ./ | |
| RUN mkdir -p /src/com/idealista/tlsh/ | |
| RUN mvn -f pom.xml clean package install | |
| WORKDIR /target | |
| COPY ./SimpleTest.java ./ | |
| RUN javac -cp tlsh-1.0.0.jar SimpleTest.java | |
| RUN jar cvf SimpleTest.jar SimpleTest.class |