See: https://github.com/bmaupin/askubuntu-983191-research
# List the packages to be removed | |
for file in *.deb; do echo $file | cut -d _ -f 1; done | sort -u | |
# Purge them | |
sudo dpkg --purge $(for file in *.deb; do echo $file | cut -d _ -f 1; done | sort -u) |
See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
- https://www.kernel.org/doc/Documentation/admin-guide/kernel-parameters.txt
- https://evilazrael.de/node/401
- https://forums.lenovo.com/t5/Linux-Discussion/T430u-Linux-doesn-t-boot-without-acpi-off/td-p/3470827
- Disable Spectre/Meltdown mitigations
numa=off
- Due to weird Calgary/NUMA messages
escape_char / | |
comment_char % | |
% This file was generated by taking the LC_TIME section from en_US and | |
% replacing date/time representation with that of sv_SE from the glibc | |
% locale sources | |
% (http://sourceware.org/git/?p=glibc.git;a=tree;f=localedata/locales;hb=HEAD) | |
% (https://www.gnu.org/software/libc/manual/html_node/Formatting-Calendar-Time.html) | |
% This file is part of the GNU C Library and contains locale data. |
Regular expressions used in searches seem to search the extracted search "terms," which you can see by clicking on any particular message, then click the down arrow > Show terms of .... For this reason, "exception" needs to be lower-case:
message:/([a-z0-9\.]+exception)/
- Create a new rule
http://docs.graylog.org/en/latest/pages/users_and_roles/permission_system.html
This will create a power user role that has permissions to do searches and create/edit dashboards (it's not necessary to include permissions already in the Reader role because Graylog will by default assign that role to all users):
curl -v -XPOST -u 'ADMIN:PASSWORD' -H 'Content-Type: application/json' 'http://graylog.example.org:9000/api/roles' -d '{"name":"Power user","description":"Dashboard and search permissions","permissions":["dashboards:create","dashboards:edit:*","dashboards:read:*","searches:absolute","searches:keyword","searches:relative"],"read_only":false}'
(Replace ADMIN, PASSWORD, and the URL as appropriate)
Here's the un-minified JSON for the Power user role:
Using the Jenkins app from the OpenShift v3.10 catalog (oc new-app jenkins-persistent
) fails with the following error in the logs:
/usr/libexec/s2i/run: line 472: exec: java: not found
- Edit the build config for the jenkins app
- Under Images uncheck Deploy images from an image stream tag
- (2023-05-02) Microsoft Broke a Chrome Feature to Promote Its Edge Browser
- (2023-03-26) Windows Needs to Stop Showing Tabloid News
- (2023-02-21) Microsoft is now injecting full-size ads on Chrome website to make you stay on Edge
- (2019-12-16) Windows 10 Setup Now Prevents Local Account Creation
- (2018-12-12) Windows 10 collects data about recently opened websites and apps when users have opted against sharing that information
- (2018-10-04) [Users are Reporting Lost Data After Installing Windows 10 October 2018 Update](ht
# https://stackoverflow.com/a/43723749/399105 | |
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
sudo tar -xzf postman.tar.gz -C /opt | |
rm postman.tar.gz | |
sudo ln -s /opt/Postman/Postman /usr/bin/postman | |
cat > ~/.local/share/applications/postman.desktop <<EOL | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Postman |