Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Zorin OS – Remove Preloaded Applications

Posted on November 3, 2017 By David Kittell

Depending on your purpose this script may be helpful as it will remove a lot of the preloaded applications.

CAUTION: This list of applications should be reviewed first. My intention of this removal script is to remove a lot of applications that a business or kid computer may not need. That said they have different ISO downloads for that.

cd ~/
for app in /usr/share/applications/*.desktop; do echo "${app:24:-8}"; done > applications.txt && cat applications.txt
sudo apt-get remove -y --purge python-pygame zeitgeist airstrike aisleriot ardour audacity blender bluefish brutalchess xmoto warzone2100 mahjongg xonotic gnome-games* supertux* quadrapassel minetest chromium-browser frozen-bubble gimp gnome-mahjongg gnome-mines gnome-activity-journal gnome-sudoku gweled neverball neverputt pingus trigger-rally armagetronad extremetuxracer virtualbox brasero empathy-common empathy* transmission-* shotwell* totem* account-plugin-* friends* unity-webapps-common thunderbird* gnome-orca gnomine gnome-sudoku gnome-mahjongg gnome-todo gnome-weather *geary xournal synergy gnome-builder darktable dia vlc vim vym rhythmbox freecad hugin inkscape librecad mypaint scribus gobby liferea calibre glabels gnucash homebank planner referencer gnome-dictionary gnome-calendar gnome-contacts transmageddon pitivi cheese kazam handbrake kdenlive kodi lmms gespeaker mixxx qjackctl cellwriter easystroke
sudo apt-get autoremove -y
sudo apt-get autoclean -y
sudo reboot
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code UNIX UNIX Shell Scripts Zorin OS

Post navigation

Previous post
Next post

Related Posts

Create Shortcut (VB, VB.Net, PowerShell)

Posted on December 14, 2013December 10, 2019

Sub Create_ShortCut(ByVal TargetPath As String, ByVal ShortCutPath As String, ByVal ShortCutname As String, Optional ByVal WorkPath As String = "", Optional ByVal Window_Style As Short = 0, Optional ByVal IconNum As Short = 0) Dim VbsObj As Object VbsObj = CreateObject("WScript.Shell") Dim MyShortcut As Object ShortCutPath = ShortCutPath MyShortcut =…

Read More

Find Most Expensive Queries Using DMV

Posted on April 29, 2013October 26, 2015

SELECT TOP 10 SUBSTRING(qt.TEXT, (qs.statement_start_offset / 2) + 1, ( ( CASE qs.statement_end_offset WHEN – 1 THEN DATALENGTH(qt.TEXT) ELSE qs.statement_end_offset END – qs.statement_start_offset ) / 2 ) + 1) ,qs.execution_count ,qs.total_logical_reads ,qs.last_logical_reads ,qs.total_logical_writes ,qs.last_logical_writes ,qs.total_worker_time ,qs.last_worker_time ,qs.total_elapsed_time / 1000000 total_elapsed_time_in_S ,qs.last_elapsed_time / 1000000 last_elapsed_time_in_S ,qs.last_execution_time ,qp.query_plan FROM sys.dm_exec_query_stats qs CROSS…

Read More

TaskKill App List

Posted on October 15, 2013October 26, 2015

taskkill /f /im pdfpro7hook.exe taskkill /f /im searchprotocolhost.exe taskkill /f /im sgnmaster.exe taskkill /f /im apmsgfwd.exe taskkill /f /im apntex.exe taskkill /f /im apoint.exe taskkill /f /im jusched.exe taskkill /f /im openvpn-gui.exe taskkill /f /im shstat.exe taskkill /f /im udaterui.exe taskkill /f /im hidfind.exe taskkill /f /im hkcmd.exe taskkill /f…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes