Homebrew को साफ करने के लिए कैसे


26

मैं होमब्रे को सफाई से कैसे हटा सकता हूं। मेरे पास एक दोषपूर्ण पुरानी स्थापना हो सकती है, और मैं एक नई शुरुआत करना चाहता हूं।


1
यह भी देखें superuser.com/questions/203707/… जिसका उत्तर है कि होमब्रे को हटाने के लिए "अब विहित" तरीके का वर्णन करें
rogerdpack

@rogerdpack टिप्पणियाँ कभी भी हटा दी जा सकती हैं, क्या आप नई विधि का वर्णन करते हुए उत्तर दे सकते हैं?
nohillside

जवाबों:


17

यह rm -rfनहीं पूछेगा कि क्या आप हटाए जाने के समय सुनिश्चित हैं, इसलिए सुनिश्चित करें कि cdकमांड आपको / tmp से बाहर निकालने के लिए काम करता है (यदि cd /tmpआप एक सुरक्षित जगह पर सभी चीज़ों को कॉपी / पेस्ट करते हैं, तो आप फ़ाइलों को हटा नहीं सकते हैं आपकी वर्तमान निर्देशिका से)

इसे अपने टर्मिनल में आज़माएं:

cd /tmp
cd `brew --prefix`
rm -rf Cellar
brew prune
rm `git ls-files`
rm -r Library/Homebrew Library/Aliases Library/Formula Library/Contributions
rm -rf .git
rm -rf ~/Library/Caches/Homebrew

इस विषय के बारे में अधिक जानकारी होमब्रेव FAQ में पाई जा सकती है ।


1
मैं जांच करूंगा कि cd `brew --prefix` एक फ़ोल्डर जाता है कि आपके पास सामान्य git फाइलें नहीं हैं, क्योंकि एक पुरानी / खराबी के सेटअप की जाँच विफल हो गई है और आपके git ls-filesडिलीट के अवशेषों के अलावा कुछ और डिलीट करने की विलोपन हो सकती है।
bmike

मैंने दस्तावेज़ीकरण पढ़ा, मैंने सोचा कि भविष्य के संदर्भ के लिए पूछने के लिए एक उपयोगी प्रश्न हो सकता है। हालांकि मुझे निर्देश के साथ समस्या है, जिसे मैंने एक अलग प्रश्न के रूप में पोस्ट किया है: apple.stackexchange.com/questions/82863/…
ipavlic

ध्यान दें कि Homebrew FAQ का लिंक github.com/mxcl/homebrew/wiki/FAQ/… से github.com/Homebrew/homebrew/blob/master/swar/doc/homebrew/… (मैं नहीं कर सकता) से अपडेट किया जाना चाहिए संपादित करें या टिप्पणी जोड़ें)।
मेघनाथ

1
अब इसके लिए एक स्क्रिप्ट है: github.com/Homebrew/brew/blob/master/docs/FAQ.md
larkey

5

जबकि HomeBrew की स्थापना प्रमुख पृष्ठ पर स्थित है, विवरण नहीं है। https://brew.sh/ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" एक लंबे समय के लिए एक विश्वसनीय स्थापना रद्द करना बहुत मुश्किल था। डॉक्स में कई क्लिक दूर, अब एक आधिकारिक विधि है: https://docs.brew.sh/FAQ होमब्रे को अनइंस्टॉल करने के लिए, टर्मिनल प्रॉम्प्ट में नीचे कमांड पेस्ट करें। ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"


3

होमब्रे को हटाने के लिए यहां एक बेहतर समाधान है: https://gist.github.com/SteveBenner/11254428

#!/usr/bin/env ruby
#
# Locates and removes Homebrew installation
# http://brew.sh/
#
# Author: Stephen Benner
# https://github.com/SteveBenner
#
require 'optparse'
require 'fileutils'
require 'open3'

$stdout.sync = true

# Default options
options = {
  :quiet     => false,
  :verbose   => true,
  :dry_run   => false,
  :force     => false,
  :find_path => false
}

optparser = OptionParser.new do |opts|
  opts.on('-q', '--quiet', 'Quiet mode - suppress output.') do |setting|
    options[:quiet]   = setting
    options[:verbose] = false
  end
  opts.on('-v', '--verbose', 'Verbose mode - print all operations.') { |setting| options[:verbose] = setting }
  opts.on('-d', '--dry', 'Dry run - print results, but perform no actual operations.') do |setting|
    options[:dry_run] = setting
  end
  opts.on('-f', '--force', 'Forces removal of files, bypassing prompt. USE WITH CAUTION.') do |setting|
    options[:force] = setting
  end
  opts.on('-p', '--find-path', 'Output homebrew location if found, then exit.') do |setting|
    options[:find_path] = setting
    options[:quiet]     = true
  end
  opts.on('-h', '--help', '--usage', 'Display usage info and quit.') { puts opts; exit }
end
optparser.parse!
$quiet = options[:quiet] # provides access to option value within methods

# Files installed into the Homebrew repository
BREW_LOCAL_FILES = %w[
  .git
  Cellar
  Library/brew.rb
  Library/Homebrew
  Library/Aliases
  Library/Formula
  Library/Contributions
  Library/LinkedKegs
]
# Files that Homebrew installs into other system locations
BREW_SYSTEM_FILES = %W[
  #{ENV['HOME']}/Library/Caches/Homebrew
  #{ENV['HOME']}/Library/Logs/Homebrew
  /Library/Caches/Homebrew
]
$files = []

# This function runs given command in a sub-shell, expecting the output to be the
# path of a Homebrew installation. If given a block, it passes the shell output to
# the block for processing, using the return value of the block as the new path.
# Known Homebrew files are then scanned for and added to the file list. Then the
# directory is tested for a Homebrew installation, and the git index is added if
# a valid repo is found. The function won't run once a Homebrew installation is
# found, but it will accumulate untracked Homebrew files each invocation.
#
# @param  [String] cmd       a shell command to run
# @param  [String] error_msg message to print if command fails
#
def locate_brew_path(cmd, error_msg = 'check homebrew installation and PATH.')
  return if $brew_location # stop testing if we find a valid Homebrew installation
  puts "Searching for homewbrew installation using '#{cmd}'..." unless $quiet

  # Run given shell command along with any code passed-in via block
  path = `#{cmd}`.chomp
  path = yield(path) if block_given? # pass command output to your own fancy code block

  begin
    Dir.chdir(path) do
      # Search for known Homebrew files and folders, regardless of git presence
      $files += BREW_LOCAL_FILES.select { |file| File.exist? file }.map {|file| File.expand_path file }
      $files += Dir.glob('**/{man,bin}/**/brew*')
      # Test for Homebrew git repository (use popen3 so we can suppress git error output)
      repo_name = Open3.popen3('git remote -v') do |stdin, stdout, stderr|
        stderr.close
        stdout.read
      end
      if repo_name =~ /homebrew.git|Homebrew/
        $brew_location = path
      else
        return
      end
    end
  rescue StandardError # on normal errors, continue program
    return
  end
end

# Attempt to locate homebrew installation using a command and optional code block
# for processing the command results. Locating a valid path halts searching.
locate_brew_path 'brew --prefix'
locate_brew_path('which brew') { |output| File.expand_path('../..', output) }
locate_brew_path 'brew --prefix' do |output|
  output = output.split($/).first
  File.expand_path('../..', output)
end

# Found Homebrew installation
if $brew_location
  puts "Homebrew found at: #{$brew_location}" unless options[:quiet]
  if options[:find_path]
    puts $brew_location
    exit
  end
  # Collect files indexed by git
  begin
    Dir.chdir($brew_location) do
      # Update file list (use popen3 so we can suppress git error output)
      Open3.popen3('git checkout master') { |stdin, stdout, stderr| stderr.close }
      $files += `git ls-files`.split.map {|file| File.expand_path file }
    end
  rescue StandardError => e
    puts e # Report any errors, but continue the script and collect any last files
  end
end

# Collect any files Homebrew may have installed throughout our system
$files += BREW_SYSTEM_FILES.select { |file| File.exist? file }

abort 'Failed to locate any homebrew files!' if $files.empty?

# DESTROY! DESTROY! DESTROY!
unless options[:force]
  print "Delete #{$files.count} files? "
  abort unless gets.rstrip =~ /y|yes/i
end

rm =
  if options[:dry_run]
    lambda { |entry| puts "deleting #{entry}" unless options[:quiet] }
  else
    lambda { |entry| FileUtils.rm_rf(entry, :verbose => options[:verbose]) }
  end

puts 'Deleting files...' unless options[:quiet]
$files.each(&rm)

1
अलग पूछने के लिए आपका स्वागत है! जबकि आपके द्वारा प्रदत्त लिंक प्रश्न का उत्तर दे सकता है, यहाँ उत्तर को शामिल करना और संदर्भ के लिए लिंक प्रदान करना बेहतर है। लिंक-केवल उत्तर अमान्य हो सकते हैं यदि लिंक किए गए पृष्ठ बदल जाते हैं। मैंने आपके प्रश्न को यह शामिल करने के लिए संपादित किया है कि मेरा मानना ​​है कि वह समाधान था जिसका आप उल्लेख कर रहे थे, हालांकि यदि यह प्रासंगिक अनुभाग को उद्धृत नहीं करता। इसके अलावा, क्या आप इस बात का विस्तार कर सकते हैं कि आपका समाधान बेहतर क्यों है?
GRG

1
तो मैं कोड बोझिल होगा सहित सोचा था कि यह कुछ पंक्तियां की तुलना में अधिक है, लेकिन मैं भविष्य में ऐसा करने के लिए खुश हूँ। यह बेहतर है क्योंकि पोस्ट किए गए उत्तर द्वारा पकड़ी गई फाइलें और निर्देशिकाएं नहीं हैं जिन्हें मेरी स्क्रिप्ट हटा देगी। यह सीएलआई विकल्पों के माध्यम से उपयोगकर्ता के लिए उपयोगिता प्रदान करता है, काढ़ा स्थानों के लिए अधिक विस्तृत खोज करता है, और इसे कोडित किया जाता है ताकि यदि आप स्क्रिप्ट में सुधार करना चाहते हैं तो इसे संशोधित करना आसान हो सके।
स्टीव बेनर
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.