Like Safari for example? The command "sudo rm -rf Safari.app/" does not work any more. Thanks!
A AlphaBoy85 macrumors regular Original poster Mar 25, 2008 197 0 Earth. Oct 23, 2014 #1 Like Safari for example? The command "sudo rm -rf Safari.app/" does not work any more. Thanks!
Apple_Robert Contributor Sep 21, 2012 35,645 52,430 In a van down by the river Oct 23, 2014 #2 I don't believe you can.
B Bruno09 macrumors 68020 Aug 24, 2013 2,202 153 Far from here Oct 23, 2014 #3 It does work (verified). Code: sudo rm -rf /Applications/Safari.app Copy and paste the command, do not type it yourself. You need to be in an admin account. Of course the deleted application will be... deleted.
It does work (verified). Code: sudo rm -rf /Applications/Safari.app Copy and paste the command, do not type it yourself. You need to be in an admin account. Of course the deleted application will be... deleted.
jbarley macrumors 601 Jul 1, 2006 4,023 1,895 Vancouver Island Oct 23, 2014 #4 I just type sudo rm -rf followed by a space, and then drag the application from the Finder to complete the Terminal input line. using this method I usually delete half a dozen or so default Apple applications like Chess, Game centre etc.
I just type sudo rm -rf followed by a space, and then drag the application from the Finder to complete the Terminal input line. using this method I usually delete half a dozen or so default Apple applications like Chess, Game centre etc.
grahamperrin macrumors 601 Jun 8, 2007 4,942 648 Dec 8, 2014 #5 Discouraging removal of apps that are integral to the operating system BasicGreatGuy said: I don't believe you can. Click to expand... It is possible to remove apps that are normally part of the system but I can't recommend doing so. jbarley said: … I usually delete half a dozen or so default Apple applications like Chess, Game centre etc. Click to expand... Concerning Launchpad, for example: … At least one core service includes references to /Applications/Launchpad.app so I should recommend not attempting to remove Launchpad.app or related software. Click to expand... – I assume that similarly, at least one core service refers to /Applications/Launchpad.app … and so on.
Discouraging removal of apps that are integral to the operating system BasicGreatGuy said: I don't believe you can. Click to expand... It is possible to remove apps that are normally part of the system but I can't recommend doing so. jbarley said: … I usually delete half a dozen or so default Apple applications like Chess, Game centre etc. Click to expand... Concerning Launchpad, for example: … At least one core service includes references to /Applications/Launchpad.app so I should recommend not attempting to remove Launchpad.app or related software. Click to expand... – I assume that similarly, at least one core service refers to /Applications/Launchpad.app … and so on.
w0lf macrumors 65816 Feb 16, 2013 1,268 109 USA Dec 8, 2014 #6 This is generally not a good idea. I would recommend hiding them instead. Code: sudo chflags -h hidden "/path/to/app" The reason your command didn't work is likely because you left out '/Applications/' You can even do a bunch of apps at once by just adding more stuff on after the first one with a space. Example: Code: cd /Applications; sudo chflags -h hidden Chess.app Safari.app Launchpad.app Reminders.app To unhide them is then simple just use nohidden instead of hidden Code: cd /Applications; sudo chflags -h nohidden Chess.app Safari.app Launchpad.app Reminders.app
This is generally not a good idea. I would recommend hiding them instead. Code: sudo chflags -h hidden "/path/to/app" The reason your command didn't work is likely because you left out '/Applications/' You can even do a bunch of apps at once by just adding more stuff on after the first one with a space. Example: Code: cd /Applications; sudo chflags -h hidden Chess.app Safari.app Launchpad.app Reminders.app To unhide them is then simple just use nohidden instead of hidden Code: cd /Applications; sudo chflags -h nohidden Chess.app Safari.app Launchpad.app Reminders.app