Posts with "ubuntu" Tag

Looping Video into Zoom

by Dan Aukes

sudo apt install -y v4l2loopback-dkms v4l-utils
ls /dev/video*
sudo modprobe v4l2loopback video_nr=9 card_label=“virtual-cam” 
```bash ffmpeg -stream_loop -1 -re ...

Read More
Installing and Using VNC

by Dan Aukes

```bash sudo apt update sudo apt install -y xfce4 xfce4-goodies tightvncserver vncserver vncpasswd

vnc password *

vncserver -kill :1 mv ~/.vnc/xstartup ~/.vnc/xstartup.bak nano ...

Read More
Weylus

by Dan Aukes

...

Read More
Download with ```wget``` and ```xpath```

by Dan Aukes

sudo apt intstall libxml2-utils
  1. go to firefox and go to the url you want to ...
Read More
using wine

by Dan Aukes

```bash sudo apt update sudo apt install -y wine64 sudo apt install -y wine64-development wine64-tools wine64-preloader sudo ...

Read More
Working with pdfs from the command line

by Dan Aukes

Merge pdfs from Bash

sudo apt install -y pdftk
pdftk file1.pdf file2.pdf cat output mergedfile.pdf

from ...

Read More
ZFS info

by Dan Aukes

Typical backup process

log into your main zfs server

use this one-liner to get the name ...

Read More