কীভাবে পরিষ্কারভাবে হোমব্রিউ অপসারণ করবেন


26

কীভাবে আমি পরিষ্কারভাবে হোমব্রিউ অপসারণ করতে পারি। আমার ত্রুটিপূর্ণ পুরানো ইনস্টলেশন থাকতে পারে এবং আমি নতুন করে শুরু করতে চাই।


1
আরও দেখুন superuser.com/questions/203707/… যার উত্তরগুলি রয়েছে যা
হোমব্রিউ

@ আরগারডপ্যাক মন্তব্যগুলি যে কোনও সময় মুছে ফেলা হতে পারে, আপনি কি দয়া করে নতুন পদ্ধতি বর্ণনা করে কোনও উত্তর পোস্ট করতে পারেন?
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

এই বিষয় সম্পর্কে আরও তথ্য হোমব্রিউউ এফএকিউতে পাওয়া যাবে ।


1
আমি যাচাই করবো যে cd `brew --prefix`কোনও ফোল্ডারে যা আপনার কাছে সাধারণ গিট ফাইল নেই যাচাই করা হয়েছে যেহেতু কোনও পুরানো / ত্রুটিযুক্ত সেটআপ ব্যর্থ হতে পারে এবং git ls-filesমুছলে মুছলে মুছলে আপনার পশুর অবশিষ্টাংশ ছাড়া অন্য কিছু মুছতে পারে।
bmike

আমি ডকুমেন্টেশনটি পড়েছি, আমি কেবল ভেবেছিলাম ভবিষ্যতের রেফারেন্স জিজ্ঞাসা করার জন্য এটি একটি দরকারী প্রশ্ন হতে পারে। যদিও আমি পৃথক প্রশ্ন হিসাবে পোস্ট করেছি, সেই নির্দেশাবলীতে আমার সমস্যা আছে: আপেল.স্ট্যাকেক্সেঞ্জার
কুইকশানস

মনে রাখবেন যে, Homebrew প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী লিঙ্ক আপডেট করা হবে github.com/mxcl/homebrew/wiki/FAQ/... করার github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/... (আমি পারবো না সম্পাদনা বা মন্তব্য যুক্ত করুন)।
মেঘাচ্ছন্ন 23

1
এখন এর জন্য একটি স্ক্রিপ্ট রয়েছে: github.com/Homebrew/brew/blob/master/docs/ FAQ.md
লার্কি

5

হোমব্রুয়ের ইনস্টলটি তার প্রথম পৃষ্ঠায় বিশিষ্টভাবে অবস্থিত রয়েছে, বিশদটি নেই। 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
এটি কয়েক লাইনের বেশি তাই আমি ভেবেছিলাম কোড সহ কোডটি জটিল হবে, তবে আমি ভবিষ্যতে এটি করতে পেরে খুশি। এটি আরও ভাল কারণ এমন কোনও ফাইল এবং ডিরেক্টরিগুলি পোস্টের উত্তরটির দ্বারা ধরা পড়েনি যা আমার স্ক্রিপ্টটি সরিয়ে ফেলবে। এটি সিএলআই বিকল্পগুলির মাধ্যমে ব্যবহারকারীর জন্য ইউটিলিটি সরবরাহ করে, ব্রিউ লোকেশনগুলির জন্য আরও নিখুঁতভাবে অনুসন্ধান করে এবং কোডটি তৈরি করা হয় যাতে আপনি স্ক্রিপ্টটি উন্নত করতে চান সেই ক্ষেত্রে এটি পরিবর্তন করা সহজ করে তোলে।
স্টিভ বেনার
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.