ch-ch-changes
This commit is contained in:
parent
187337aadd
commit
e3abb00b08
@ -1,3 +1,4 @@
|
||||
In program:
|
||||
|
||||
> /NETWORK LIST
|
||||
> /CHANNEL LIST
|
||||
|
@ -1,22 +0,0 @@
|
||||
# Install Java OpenJDK
|
||||
|
||||
> sudo add-apt-repository ppa:openjdk-r/ppa
|
||||
|
||||
> sudo apt install openjdk-8-jre-headless -y
|
||||
|
||||
# Check Java Version
|
||||
|
||||
> java -version
|
||||
|
||||
This should be at least 1.8.
|
||||
|
||||
# NGingx
|
||||
|
||||
> sudo apt install nginx -y
|
||||
|
||||
This has missing dependencies.
|
||||
|
||||
> sudo apt install nginx-full
|
||||
|
||||
> clean; sudo apt -yf install
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
Short list
|
||||
|
||||
> khard list
|
||||
|
@ -1,10 +0,0 @@
|
||||
|
||||
See version information, plus current options:
|
||||
|
||||
> neomutt -v
|
||||
|
||||
Install notmuch, then run:
|
||||
|
||||
> notmuch setup
|
||||
|
||||
|
@ -44,7 +44,3 @@ Get yours with
|
||||
|
||||
> /otr myfp
|
||||
|
||||
# omemo
|
||||
|
||||
Cannot find anyone for this on Arch Wiki, problem is therefore impossible.
|
||||
|
||||
|
16
data/sdcv.md
16
data/sdcv.md
@ -1,5 +1,4 @@
|
||||
|
||||
# Install new dictionaries
|
||||
# Install New Dictionaries
|
||||
|
||||
If the path doesn't exist then:
|
||||
|
||||
@ -7,4 +6,17 @@ If the path doesn't exist then:
|
||||
|
||||
Then move the dictionaries there.
|
||||
|
||||
# Words
|
||||
|
||||
To look up 'cat' in all languages, just do:
|
||||
|
||||
> sdcv cat
|
||||
|
||||
Look at dictionaries you have with:
|
||||
|
||||
> sdcv -l
|
||||
|
||||
To use a specific dictionary, like `en_rs`, do:
|
||||
|
||||
> sdcv -u en_rs
|
||||
|
||||
|
@ -1,40 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
[ ! -z $1 ] && sudo apt-get install -y virtualbox-guest-additions-iso
|
||||
|
||||
sudo apt-get -y install wget php php-{pear,cgi,common,curl,mbstring,gd,mysql,gettext,bcmath,imap,json,xml,fpm}
|
||||
|
||||
clear
|
||||
|
||||
echo 'The correct version of php should be 7.2.8 or greater.'
|
||||
|
||||
echo "The current version is $(php -v | grep PHP)"
|
||||
|
||||
sleep 5
|
||||
|
||||
sudo sh -c 'printf "upload_max_filesize = 20M\nmax_execution_time = 120\n" >> /etc/php.ini'
|
||||
|
||||
sudo apt-get install -y nginx
|
||||
|
||||
# Installing mariadb server
|
||||
|
||||
## uninstall any old versions first
|
||||
|
||||
## install software-properties-common if missing
|
||||
|
||||
sudo apt-get install -y software-properties-common
|
||||
|
||||
# then get the keys to the server
|
||||
|
||||
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8
|
||||
|
||||
sudo add-apt-repository "deb [arch=amd64,arm64,ppc64el] http://mariadb.mirror.liquidtelecom.com/repo/10.4/ubuntu $(lsb_release -cs) main"
|
||||
|
||||
sudo apt -y update && sudo apt -y install mariadb-server mariadb-client
|
||||
|
||||
# Enter a password for the database, or if you did not get a prompt, run:
|
||||
|
||||
|
||||
sudo mysql_secure_installation
|
||||
|
||||
# Then just accept defaults
|
@ -1,3 +1,5 @@
|
||||
(instructions currently not working)
|
||||
|
||||
Switch to root to make things easier.
|
||||
|
||||
> yay -S
|
||||
@ -107,7 +109,8 @@ Do a non-daemon version with
|
||||
This needs to be edited for "$TASKDDATA", "$TASKDUSER", and "$TASKDGROUP".
|
||||
|
||||
|
||||
---
|
||||
```
|
||||
|
||||
Unit]
|
||||
Description=Secure server providing multi-user, multi-client access to Taskwarrior data
|
||||
Requires=network.target
|
||||
@ -127,7 +130,7 @@ ReadOnlyDirectories=/etc /usr
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
---
|
||||
```
|
||||
|
||||
Enable all this by copying the file to `/etc/systemd/system`, reload daemon, then start it.
|
||||
|
||||
@ -174,5 +177,3 @@ Alias `delete' to `rm' with:
|
||||
|
||||
task config alias.rm delete
|
||||
|
||||
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
# script currently not working
|
||||
|
||||
export TASKDDATA=/var/lib/taskd
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
# Setup
|
||||
|
||||
Below commands mostly deal with timew alone. With taskwarrior installed as well, `locate on-modify-time`, then add it to ~/.task/hooks and make it executable.
|
||||
|
||||
#Summaries
|
||||
# Summaries
|
||||
|
||||
Try:
|
||||
|
||||
@ -127,6 +128,7 @@ task end.after:today-1wk completed
|
||||
# Errors with Python3
|
||||
|
||||
Replace
|
||||
|
||||
`os.system('timew start ' + combined + ' :yes')`
|
||||
|
||||
with:
|
||||
@ -141,16 +143,9 @@ with:
|
||||
|
||||
`os.system('timew stop ' + combined.decode() + ' :yes')`
|
||||
|
||||
|
||||
|
||||
# Fixing Errors
|
||||
|
||||
> curl -O https://taskwarrior.org/download/timew-dbcorrection.py
|
||||
|
||||
> python timew-dbcorrections.py
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
'H' for help.
|
||||
|
||||
Ctrl+u to go to new url.
|
||||
|
||||
tab between fields.
|
||||
@ -8,5 +10,3 @@ o for the love of options.
|
||||
T for a new tab.
|
||||
'{' and '}' to change tabs.
|
||||
|
||||
'H' for help.
|
||||
|
||||
|
Binary file not shown.
@ -1,5 +1,3 @@
|
||||
# Problems
|
||||
|
||||
## apt
|
||||
|
||||
### Configurations?
|
||||
|
@ -7,6 +7,8 @@ echo "deb https://dl.bintray.com/hawkeye116477/waterfox-deb release main" | sudo
|
||||
curl https://bintray.com/user/downloadSubjectPublicKey?username=hawkeye116477 | sudo apt-key add -
|
||||
sudo apt-get update && sudo apt-get install waterfox
|
||||
|
||||
```
|
||||
|
||||
echo "deb http://http.kali.org/ /kali main contrib non-free
|
||||
deb http://http.kali.org/ /wheezy main contrib non-free
|
||||
deb http://http.kali.org/kali kali-dev main contrib non-free
|
||||
@ -18,6 +20,8 @@ deb-src http://http.kali.org/kali kali main contrib non-free
|
||||
deb http://security.kali.org/kali-security kali/updates main contrib non-free
|
||||
deb-src http://security.kali.org/kali-security kali/updates main contrib non-free" >> /etc/apt/sources.list
|
||||
|
||||
```
|
||||
|
||||
setxkbmap gb
|
||||
|
||||
# gksudo firefox -install-global-extension addon-1865-latest.xpi
|
||||
@ -71,7 +75,6 @@ apt install libfftw3-dev libncursesw5-dev libpulse-dev
|
||||
|
||||
cd
|
||||
|
||||
|
||||
mkdir Images;mkdir Images/Wallpapers;mkdir Images/Screenshots
|
||||
|
||||
apt install -y encfs cmatrix cowsay
|
||||
|
Loading…
Reference in New Issue
Block a user