Uploading instructions

raveslurperstar V.I.P. on January 16th, 2021 / post 75044
I tried to upload a mega-pack, but when I uploaded the .torrent file I got an error saying that it's not a valid torrent file. I created it using ctorrent on Linux. Are there recommendations on creating a torrent file that work better than the method I did?
~r.s~
raveslurperstar V.I.P. on January 16th, 2021 / post 75045
Ok I believe I've gotten it to work.
~r.s~
t0rrents user on January 17th, 2021 / post 75048
Under linux I recommend tixati
raveslurperstar V.I.P. on January 20th, 2021 / post 75054
Woah tixati is awesome. Created a Dockerfile for it too to run under x11docker if anyone's interested.

Do you happen to know where it saves its config?
~r.s~
AMDx4Dvip CRAZY DiAMOND on January 21st, 2021 / post 75056
I think many were interested to know the details of the Dockerfile implementation. I am using tixati too.
raveslurperstar V.I.P. on January 21st, 2021 / post 75057
Dockerfile:

FROM debian:sid-slim

RUN apt update && \
   apt upgrade -y -qq && \
   apt install -y -qq \
     curl \
     dirmngr \
     gnupg \
     gtk2-engines \
     ca-certificates \
     hicolor-icon-theme \
     libdbus-1-3 \
     libdbus-glib-1-2 \
     libgl1-mesa-dri \
     libgl1-mesa-glx \
     libgtk2.0-0 \
     fonts-noto \
     fonts-noto-cjk \
     fonts-noto-color-emoji \
     wget && \
   rm -rf /var/lib/apt/lists/*

RUN wget https://download2.tixati.com/download/tixati_2.81-1_amd64.deb && \
   apt install ./tixati_2.81-1_amd64.deb && \
   rm tixati_2.81-1_amd64.deb

ENV LANG en-US

COPY local.conf /etc/fonts/local.conf

ENTRYPOINT ["/usr/bin/tixati"]


local.conf:






rgb




true




hintslight




true




lcddefault




false





To build, create those files in a single directory, and build using: DOCKER_BUILDKIT=1 docker build --rm -t tixati .

In order to run it, you need x11-docker. Easily found on github. The script that I use to run it is:

#!/bin/zsh

x11docker \
 --share $HOME/Downloads \
 --clipboard \
 --xpra \
 --dbus \
 -- --network=container:name_of_container_running_my_vpn_connection --tmpfs=/dev/shm -- \
 tixati
~r.s~
raveslurperstar V.I.P. on January 21st, 2021 / post 75058
Only problem with my set up in Docker is that I don't know where the configs are written to, so each time you run the container, you need to re-setup everything. If I know where it stores it, we can map in the right directory and have the settings persist between runs.
~r.s~
AMDx4Dvip CRAZY DiAMOND on February 3rd, 2021 / post 75084
Notes on Tixati portable latest version. Indeed, some of the configuration settings are not saved after rebooting the client. I recommend using older versions of Tixati!
you cannot post in this forum.
click here to to create a user account to participate in our forum.