• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » Pros and Cons of Using Linuxbrew on GNU/Linux Server

By Abhishek Ghosh January 4, 2017 8:09 pm Updated on January 4, 2017

Pros and Cons of Using Linuxbrew on GNU/Linux Server

Advertisement

We talked about Package Manager. Linuxbrew is Homebrew Package Manager For GNU/Linux. We Need to Think About the Pros and Cons of Using Linuxbrew on GNU/Linux Server. Reason behind thinking is avoiding the distro specific commands and avoiding complexity of software configuration. Aptitude, Yust, Yum – does not make GNU/Linux distro universally usable.

Pros and Cons of Using Linuxbrew on GNU:Linux Server

 

How to Install Linuxbrew on GNU/Linux Server

 

At this moment, do not install on production server. There can be security issues. For Debian or Ubuntu, you need to run these :

Vim
1
2
3
apt update -y
apt upgrade -y
apt install build-essential curl git python-setuptools ruby

For CentOS, you need to run :

Advertisement

---

Vim
1
2
3
yum update -y
sudo yum groupinstall 'Development Tools'
sudo yum install curl git irb python-setuptools ruby

It is as easy as installing Homebrew. Simply copy paste and hit enter :

Vim
1
2
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)"
PATH="$HOME/.linuxbrew/bin:$PATH"

Add the following to your .bashrc file :

Vim
1
2
3
export PATH="$HOME/.linuxbrew/bin:$PATH"
export MANPATH="$HOME/.linuxbrew/share/man:$MANPATH"
export INFOPATH="$HOME/.linuxbrew/share/info:$INFOPATH"

Rest written here :

Vim
1
https://github.com/Linuxbrew/brew

 

Pros and Cons of Using Linuxbrew on GNU/Linux Server

 

Positive points :

It does not need explanation that running :

Vim
1
brew install nginx-extras

is distro-neutral. It avoids :

Vim
1
2
3
4
5
# for CentOS
yum install nginx-extras
# for Ubuntu, Debian
apt install nginx-extras
# so on

Packages in the repositories are often older than the latest latest official versions, and Homebrew and Linuxbrew builds from latest source.

It avoids too much complicated key signing.

It avoids the need of root privilege.

One LinuxBrew repository can provide a quick method to install needed packages for a cluster of GNU/Linux machines. If we create a repo named thecustomizewindows and lemp-php5 for LEMP with PHP 5 setup, all users can use :

Vim
1
brew tap thecustomizewindows/lemp-php5

to get automatic ready to use servers. We can install a local formula too :

Vim
1
brew install /path/to/formula.rb

Negative points :

Now, what are the problems? HomeBrew was developed for Mac OS X, which shamefully lacks a standard command line package management system. As the users were Mac users on “desktop”, the formula on GitHub was not an issue.

For servers we can not use the existing Linuxbrew for serious production servers with announcement. Homebrew/Linuxbrew have their own git repo. Question is, how they’ll run servers for Free Softwares for so many servers on this earth? At this moment, they need to release one version of Linuxbrew without default repo URLs. Because cloning their repo and modifying in current condition will debrand them.

Another problem is philosophical conflict with Free Software Foundation and Open Source. If Free Software Foundation supports Linuxbrew, then it becomes usable to all as GNU can host. But GNUbrew will be correct name in such case with restriction of non-free softwares.

Another problem is server security. The reason Homebrew was created was for escaping the difficulty of too-tight security of UNIX chroot jail shell and UNIX Wheel Group. But in case of server, the hacker is “user” and we are Apple inc !

HomeBrew is great and minimum changes in Linuxbrew can make it a very powerful tool for devops. CentMinMod to many things becoming easy to develop in a streamlined fashion.

Tagged With linux server cons , linuxbrew distro , linuxbrew proj6 , linuxbrew pros cons , linuxbrew vs apt on ubuntu , pros and cons of lynux 2017 , security cameras pros and cons

This Article Has Been Shared 444 Times!

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Pros and Cons of Using Linuxbrew on GNU/Linux Server

  • Private cloud in the business : More Possibilities

    Private cloud in the business is offered by various bigger web hosting or Cloud Service Providers. But, when and why a Business will seek for Private Cloud?

  • Cloud Computing Abbreviations : List of Commonly Used Abbreviations

    Cloud Computing Abbreviations are most commonly used on Internet Blog and News related websites than in Books. Here is a guide on Cloud Computing Abbreviations.

  • Installing WordPress on Rackspace Cloud Sites : Tips with Video

    Installing WordPress on Rackspace Cloud Sites Guide this time reloaded with easy tips to install within 15 minutes and a guided video also included as a part.

  • OpenStack Cloud Compute : Red Hat Plans For Implementation

    OpenStack and Red Hat relationship is not new, Red Hat is one of the platinum. OpenStack has exceeded the expectations for performance, adaption was natural.

  • Cloud Computing in Home Care Scenarios : Opportunities and Risks

    Cloud Computing in Home Care Scenarios is based on real-world scenarios to analyze the opportunities and risks, as well as the practicality of such systems.

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • How to Do Electrical Layout Plan for Adding Smart Switches January 26, 2023
  • What is a Data Mesh? January 25, 2023
  • What is Vehicular Ad-Hoc Network? January 24, 2023
  • Difference Between Panel Light, COB Light, Track Light January 21, 2023
  • What is COB LED? How LED Chip On Board Works January 20, 2023

About This Article

Cite this article as: Abhishek Ghosh, "Pros and Cons of Using Linuxbrew on GNU/Linux Server," in The Customize Windows, January 4, 2017, January 27, 2023, https://thecustomizewindows.com/2017/01/pros-cons-using-linuxbrew-gnulinux-server/.

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT