| Type | Acronyms | Meaning |
|---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Set-SmbClientConfiguration -RequireSecuritySignature $false | |
| Set-SmbClientConfiguration -EnableInsecureGuestLogons $true |
To start, read the official release notes.
If your install fits into "vanilla Debian plus maybe a handful of 3rd-party repos", then this guide for a simple upgrade to Debian 13 "trixie" from Debian 12 "bookworm" can be helpful. 3rd-party repos are handled with a find command.
If you are on a fork of Debian such as RasPI OS, use their instructions, not this gist.
Note upgrade is only supported from Debian 12 to Debian 13. If you are on Debian 11, upgrade to Debian 12 first. Then once on Debian 12, you can upgrade to Debian 13.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*var getStackTrace = function () { | |
| var obj = {}; | |
| Error.captureStackTrace(obj, getStackTrace); | |
| return obj.stack; | |
| };*/ | |
| function a0_0x2022(_0xcf00d8, _0x46623d) { | |
| const _0xf90af8 = a0_0xf90a(); | |
| return ( | |
| (a0_0x2022 = function (_0x2022ef, _0xef2f2) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WITH tab AS ( | |
| SELECT | |
| a.attrelid::regclass::text AS t, | |
| a.attname AS c, | |
| pg_get_serial_sequence(a.attrelid::regclass::text, a.attname) AS s, | |
| nextval(pg_get_serial_sequence(a.attrelid::regclass::text, a.attname)) AS v | |
| FROM pg_attribute a | |
| JOIN pg_class c ON c.oid = a.attrelid | |
| WHERE | |
| a.attrelid::regclass::text LIKE '%' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ########################################################################################## | |
| # Script to be placed in /etc/initramfs-tools/hooks/ipv6 | |
| # | |
| # These initramfs IPv6 scripts were originally made by zajdee, and were modified by Someguy123 | |
| # at Privex Inc. ( https://www.privex.io ) to fix some issues and add debug logging. | |
| # | |
| # It can be found online here: https://gist.github.com/Someguy123/8092bdc9834aa210fb4bd1523e9a1c38 | |
| # | |
| # (Original Gist this was based off of (broken script!): https://gist.github.com/zajdee/65aad61f35d3a63c56c7d1cc76c22e14) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Disabling all NMEA sentences | |
| $PUBX,40,GGA,0,0,0,0*5A // Disable GGA | |
| $PUBX,40,GLL,0,0,0,0*5C // Disable GLL | |
| $PUBX,40,GSA,0,0,0,0*4E // Disable GSA | |
| $PUBX,40,GSV,0,0,0,0*59 // Disable GSV | |
| $PUBX,40,RMC,0,0,0,0*47 // Disable RMC | |
| $PUBX,40,VTG,0,0,0,0*5E // Disable VTG | |
| $PUBX,40,ZDA,0,0,0,0*44 // Disable ZDA | |
| # Enabling all NMEA sentences |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| complete -c multipass -n "__fish_use_subcommand" -s h -l help -d 'Prints help information' | |
| complete -c multipass -n "__fish_use_subcommand" -s V -l version -d 'Prints version information' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "delete" -d 'Delete instances' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "exec" -d 'Run a command on an instance' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "find" -d 'Display available images to create instances from' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "get" -d 'Get a configuration setting' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "help" -d 'Display help about a command' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "info" -d 'Display information about instances' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "launch" -d 'Create and start an Ubuntu instance' | |
| complete -c multipass -n "__fish_use_subcommand" -f -a "list" -d 'List all available instances' |
NewerOlder