This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
unix [2010/02/18 13:59] robm |
unix [2021/12/13 13:55] (current) robm [X11: Client is not authorized to connect to Server] |
||
|---|---|---|---|
| Line 4: | Line 4: | ||
| //**Note:** This are also includes web-related things, such as Apache, which arn't really specific to unix & linux systems// | //**Note:** This are also includes web-related things, such as Apache, which arn't really specific to unix & linux systems// | ||
| + | * [[unix: | ||
| + | * [[unix: | ||
| * [[unix:x|My Perfect X11 setup]] --- Portrait PC monitor with compiz + HDTV without compiz | * [[unix:x|My Perfect X11 setup]] --- Portrait PC monitor with compiz + HDTV without compiz | ||
| * [[unix: | * [[unix: | ||
| Line 13: | Line 15: | ||
| * [[unix: | * [[unix: | ||
| * [[unix:USB Booting]] --- Wanted to reflash my BIOS, without resorting to floppies or CD-ROMs. | * [[unix:USB Booting]] --- Wanted to reflash my BIOS, without resorting to floppies or CD-ROMs. | ||
| + | |||
| + | ====== Backups ====== | ||
| + | |||
| + | Use [[https:// | ||
| ===== Cygwin ===== | ===== Cygwin ===== | ||
| Line 28: | Line 34: | ||
| The streams are combined by the parenthesis which create a sub-shell. | The streams are combined by the parenthesis which create a sub-shell. | ||
| + | ===== Finding directories, | ||
| + | <code bash> | ||
| + | find . -type d \( -name .snapshot -prune -o -name .git \) | ||
| + | </ | ||
| + | |||
| + | Looking in the current directory, '' | ||
| ===== Renaming ===== | ===== Renaming ===== | ||
| There is actually a '' | There is actually a '' | ||
| Line 237: | Line 249: | ||
| >as RTS/CTS and involves switching the signal on a couple of the pins | >as RTS/CTS and involves switching the signal on a couple of the pins | ||
| > | > | ||
| + | |||
| + | To disable flow control add this to your shell' | ||
| + | |||
| + | <code bash> | ||
| + | # Disable software flow control (XON / XOFF or ^S / ^Q) | ||
| + | stty -ixon | ||
| + | </ | ||
| ===== Disabling CapsLock ===== | ===== Disabling CapsLock ===== | ||
| Line 257: | Line 276: | ||
| http:// | http:// | ||
| + | ===== X11: " | ||
| + | |||
| + | From: https:// | ||
| + | |||
| + | Copy xauth token from somewhere with access: | ||
| + | |||
| + | xauth extract - $DISPLAY | ||
| + | |||
| + | and import it to the place that's having trouble: | ||
| + | |||
| + | xauth merge - | ||
| + | |||
| + | For example, to allow a Docker container access to the X11 display: | ||
| + | |||
| + | xauth extract - $DISPLAY | base64 | ||
| + | |||
| + | and copy the result to the clipboard, and then in the container shell: | ||
| + | |||
| + | base64 -d <<<' | ||