Instructions how to install Debian using debootstrap. Below instructions were verified to work with debootstrapping Debian 11.
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
| sisyphus@shadowfox:~$ sudo aptitude install iceweasel | |
| The following NEW packages will be installed: | |
| iceweasel libmozjs16d{a} libnspr4{ab} xulrunner-16.0{a} | |
| 0 packages upgraded, 4 newly installed, 0 to remove and 0 not upgraded. | |
| Need to get 13.7 MB of archives. After unpacking 37.2 MB will be used. | |
| The following packages have unmet dependencies: | |
| libnspr4: Conflicts: libnspr4-0d (< 2:4.9-2~) but 4.8.6-1 is installed. | |
| The following actions will resolve these dependencies: | |
| Remove the following packages: |
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
| ########## | |
| # Tweaked Win10 Initial Setup Script | |
| # Primary Author: Disassembler <disassembler@dasm.cz> | |
| # Modified by: alirobe <alirobe@alirobe.com> based on my personal preferences. | |
| # Version: 2.20.2, 2018-09-14 | |
| # Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
| # Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
| # Tweak difference: | |
| # | |
| # @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
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
| /** | |
| * use this file to quickly create a bot personality for your Program O v2 chatbot. | |
| * replace YOUR_BOTID with the actual existing bot_id from your bots table. | |
| **/ | |
| INSERT INTO `botpersonality` (`id`, `bot_id`, `name`, `value`) VALUES | |
| (NULL, YOUR_BOTID, 'age', '23yrs'), | |
| (NULL, YOUR_BOTID, 'baseballteam', 'Yankies'), | |
| (NULL, YOUR_BOTID, 'birthday', '15th March'), |