A AlphaBoy85 macrumors regular Original poster Oct 23, 2014 #1 Like Safari for example? The command "sudo rm -rf Safari.app/" does not work any more. Thanks!
B Bruno09 macrumors 68020 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 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 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 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