diff --git a/docs/developer/workflow/providing-backtraces.mdx b/docs/developer/workflow/providing-backtraces.mdx index a29f811..e5a59c6 100644 --- a/docs/developer/workflow/providing-backtraces.mdx +++ b/docs/developer/workflow/providing-backtraces.mdx @@ -26,6 +26,27 @@ A debug symbol is a special kind of symbol that attaches additional information In the case of Budgie Desktop, this helps us identify various parts of the Budgie Desktop codebase across its range of components that may affect any issue that requires a backtrace. + + Debian 11 and above can automatically retrieve debug symbols from the Internet by exporting the following environment variable: + export DEBUGINFOD_URLS="https://debuginfod.debian.net" +
+ To manually install debug symbols, make sure you have debian-debug archive in /etc/apt/sources.list: + + deb http://deb.debian.org/debian-debug/ $RELEASE-debug main +
+ # for security updates +
+ deb http://deb.debian.org/debian-debug/ $RELEASE-proposed-updates-debug main +
+ If you are unsure what $RELEASE is for you, you can find the codename here: + lsb_release -rcs + Debug symbols are ready to install now: + + sudo apt update +
+ sudo apt install budgie-core-dbgsym +
+
sudo dnf debuginfo-install budgie-desktop diff --git a/src/data/supportList.tsx b/src/data/supportList.tsx index 674d4cf..b364674 100644 --- a/src/data/supportList.tsx +++ b/src/data/supportList.tsx @@ -40,15 +40,32 @@ export const SupportListData: SupportInfo[] = [ }, { budgieAvailablePostInstall: null, - budgieVersion: "10.5.2", + budgieVersion: "10.7.1", name: "Debian", showInGrid: false, installationInfo: () => ( - - Installation instructions coming soon! - + <> + Install Budgie Desktop and a LightDM greeter: + + sudo apt install budgie-desktop slick-greeter + + + You will be prompted to select a default display manager if you already have one installed. We recommend LightDM for the best experience. You can always change your choice later by running: + + sudo dpkg-reconfigure lightdm + + + It is recommended to install the default GTK and icon theme: + + sudo apt install materia-gtk-theme papirus-icon-theme + + Restart your display manager to log into Budgie: + + sudo systemctl restart display-manager + + ), - website: "https://debian.org", + website: "https://www.debian.org", }, { budgieAvailablePostInstall: "10.7.2",