惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
A
About on SuperTechFans
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
博客园 - 聂微东
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
量子位
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

blag

SQLite prefixes its temp files with `etilqs_` - blag Setsum - order agnostic, additive, subtractive checksum - blag Oldest recorded transaction - blag Replacing a cache service with a database - blag SQLite commits are not durable under default settings - blag PSA: SQLite WAL checksums fail silently and may lose data - blag Rickrolling Turso DB (SQLite rewrite in Rust) - blag Collection of insane and fun facts about SQLite - blag How bloom filters made SQLite 10x faster - blag In search of a faster SQLite - blag Galloping Search - blag Building a distributed log using S3 (under 150 lines of Go) - blag Zero Disk Architecture - blag PSA: Most databases do not do checksums by default - blag PSA: SQLite does not do checksums - blag Disaggregated Storage - a brief introduction - blag Why does SQLite (in production) have such a bad rep? - blag SQLite Slaps - blag Now - blag Learning C - blag Snapshot Testing - blag Win: contribution to libSQL (SQLite) codebase - blag Errata in Hekaton MVCC paper - blag Internet is wholesome: MVCC edition - blag It is becoming difficult for me to be productive in Python - blag MongoDB secondary only index - blag Introducing CaskDB – a project to teach you writing a key-value store - blag Recurse Center: Winter Break - blag Recurse Center Day 24: Hacking Go compiler to add a new keyword - blag Recurse Center Day 20: Django v4 upgrade (from v1) - blag
Installing Transmission (remote and CLI) client on Raspbe...
2013-12-05 · via blag

I have found Transmission to be best client to run on Raspberry Pi. In this tutorial I will explain how to install Transmission and access it using it’s web interface over browser.

Though this tutorial is for Raspberry Pi, it should work for any computer running Debian flavour.

First run these commands to update and upgrade the packages you have installed.

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install transmission-daemon

Create a directory where you will be saving the downloads. I have always connected a HDD to Pi and that’s where all my downloads go. Fix the path accordingly.

mkdir /media/my_passport/downloads

Run the following commands which grants access to the download directory and also adds current user to transmission-daeomon group:

sudo chown debian-transmission:debian-transmission /media/my_passport/downloads
sudo usermod -a -G debian-transmission <user>
sudo chmod 770 /media/my_passport/downloads

Before making any changes, make sure you are stopping the Transmission client. The config file resides at /etc/transmission-daemon/settings.json. Make changes to it as per your requirements. To make some changes:

sudo service transmission-daemon stop
sudo nano /etc/transmission-daemon/settings.json

Above should show you Nano editor, where you can edit the config file. Once done, press Ctrl + O (Control plus Oh) to save and Ctrl + X to exit Nano editor. Some of the changes I make are:

"download-dir": "/media/my_passport/downloads",
...
...
"rpc-authentication-required": true,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-password": "password",
"rpc-port": 9091,
"rpc-url": "/transmission/",
"rpc-username": "avi",
"rpc-whitelist": "127.0.0.1, 192.168.*.*",
"rpc-whitelist-enabled": false,

Make sure you keep a strong password and the file is valid json. Or else Transmission client won’t start. You can check the validity of json file on JSON Lint.

How to start/stop/restart Transmission client:

  • to start:

      sudo service transmission-daemon start
    
  • to stop:

      sudo service transmission-daemon stop
    
  • to restart:

      sudo service transmission-daemon restart
    

How to access Transmission in Web Browser:

Transmission web client starts on port 9091 by default. Check:

http://<raspberry_pi_ip_address>:9091