• Home
  • Downloads
  • Contact Us
  • Report Broken Link
Friday, May 9, 2025
  • Login
lessons4you.info
  • Videos
  • Downloads
  • Help
    • Contact Us
    • Report Broken Link
No Result
View All Result
  • Videos
  • Downloads
  • Help
    • Contact Us
    • Report Broken Link
No Result
View All Result
Lessons4you.info
No Result
View All Result

How to Create an OS X Mavericks 10.9 USB Installation USB Drive

Convert .dmg to .iso File

Homebrew – Package Manager for OS X

by
December 11, 2021
in Uncategorized
Reading Time: 4 mins read
A A
Share on FacebookShare on Twitter

homebrew missing package manager osxHomebrew installs the stuff you need that Apple didn’t. It’s a package manager for mac os just like apt-get or yum package managers for RedHat and Debian linux systems. It makes your life easier to install lots of packages in a single command just like linux. I love Homebrew package manager and i use it on my MacBook Pro.

1
2
3
 
$ brew install wget
 

Homebrew installs packages to their own directory and then symlinks their files into /usr/local.

1
2
3
4
5
6
7
8
9
10
 
$ cd /usr/local
$ find Cellar
Cellar/wget/1.12
Cellar/wget/1.12/bin/wget
Cellar/wget/1.12/share/man/man1/wget.1
 
$ ls -l bin
bin/wget > ../Cellar/wget/1.12/bin/wget
 

Homebrew won’t install files outside its prefix, and you can place a Homebrew installation wherever you like.

Trivially create your own Homebrew packages.

1
2
3
4
 
$ brew create http://foo.com/bar-1.0.tgz
Created /usr/local/Library/Formula/bar.rb
 

It’s all git and ruby underneath, so hack away with the knowledge that you can easily revert your modifications and merge upstream updates.

1
2
3
 
$ brew edit wget # opens in $EDITOR!
 

Homebrew formulae are simple Ruby scripts:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
require 'formula'
 
class Wget > Formula
homepage 'http://www.gnu.org/wget/'
url 'http://ftp.gnu.org/wget-1.12.tar.gz'
md5 '308a5476fc096a8a525d07279a6f6aa3'
 
def install
system "./configure --prefix=#{prefix}"
system 'make install'
end
end
 

Homebrew complements OS X. Install your gems with gem, and their dependencies with brew.

Install Homebrew

1
2
3
 
$ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
 

The script explains what it will do and then pauses before it does it. There are more installation options here (needed on 10.5).

Troubleshooting

– First, please run brew update and brew doctor.

1
2
3
4
 
$ brew update
$ brew doctor
 

RESULT:

1
2
3
4
5
6
7
8
 
$ brew update
Updated Homebrew from ad741405 to 728206df.
==> Updated Formulae
daemon   homebank
hicolor-icon-theme   scons$ brew doctor
Your system is ready to brew.
 

Important Links

– Install Homebrew
– FAQ
– Tips n’ Tricks

[aio_button align=”none” animation=”none” color=”red” size=”small” icon=”none” text=”Homebrew GitHub” target=”_blank” relationship=”dofollow” url=”https://github.com/Homebrew/homebrew”] [aio_button align=”none” animation=”none” color=”red” size=”small” icon=”none” text=”Homebrew Official Site” target=”_blank” relationship=”dofollow” url=”http://brew.sh/”]

Related articles across the web

  • [SOLVED] Unable to read package metadata – CentOS
  • Generate PNG wave-form Images from Audio WAVE Files
  • How to Mount MacOSX HFS Plus Drive in Linux CentOS 6
  • [SOLVED] Unable to open mixer /dev/mixer
  • Install sun-java6-jdk on Ubuntu 10.04 (Lucid)
Tags: OS XPackage Manager
Previous Post

How to Create an OS X Mavericks 10.9 USB Installation USB Drive

Next Post

Convert .dmg to .iso File

Related Posts

How To Install The TWRP Recovery on Xiaomi Redmi 1s
Uncategorized

How To Install The TWRP Recovery on Xiaomi Redmi 1s

May 14, 2022
MIUI Collection Of Gapps (2.3.x – 5.0.x)
Uncategorized

MIUI Collection Of Gapps (2.3.x – 5.0.x)

May 14, 2022
Download Android 5.1.x Lollipop PA Gapps
Uncategorized

Download Android 5.1.x Lollipop PA Gapps

May 15, 2022
Download gapps for Android 5.1 Lollipop Cyanogemod 12.1
Uncategorized

Download gapps for Android 5.1 Lollipop Cyanogemod 12.1

May 14, 2022
Reddit AMA with OxygenOS Team OnePlus
Uncategorized

Reddit AMA with OxygenOS Team OnePlus

May 14, 2022
How to Remove Adobe Updater from OS X Menu Bar?
Uncategorized

How to Remove Adobe Updater from OS X Menu Bar?

July 19, 2023
Next Post

Convert .dmg to .iso File

  • Home
  • Downloads
  • Contact Us
  • Report Broken Link

© 2022 lessons4you.info

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Videos
  • Downloads
  • Help
    • Contact Us
    • Report Broken Link

© 2022 lessons4you.info