Skip to main content

Installing Sublime Text 3 on Fedora 21


Though the process of installing Sublime Text 3 on Fedora 21 is not difficult at all, the articles available online doesn't have the correct steps most of the time. Since I had to waste a decent amount of time to find the right script and install Sublime 3 on my machine, I thought I would document the steps, saving someone else's time.

The steps for installing Sublime Text 3 on Fedora 21 are:

Step 1: 

[1] For Linux x64:

wget -O install-sublime.sh https://gist.github.com/xtranophilist/5932634/raw/sublime-text-3-x64.sh && sudo sh install-sublime.sh; rm -rf install-sublime.sh

[2] For Linux x32:

wget -O install-sublime.sh https://gist.github.com/xtranophilist/5932634/raw/sublime-text-3-x32.sh && sudo sh install-sublime.sh; rm -rf install-sublime.sh


The content of these scripts can be found here : https://gist.github.com/xtranophilist/5932634

Step 2:

su -c "sh install-sublime-text.sh"

Comments

  1. on performing step two it says "sh: install-sublime-text.sh: No such file or directory".

    ReplyDelete

Post a Comment

Popular posts from this blog

Embedding Scrollback on your personal website

If you are not already aware of what Scrollback is, here is a small introduction to Scrollback. "Scrollback is a beautiful, open source text chat service designed for communities. Scrollback chat rooms can be embedded in websites and linked with Twitter hashtags or IRC channels." [You can visit the Scrollback site for a better understanding]. Many community websites and personal websites have adopted Scrollback and embedded it into their sites. A great example for this is the Mozilla India website . Here are a few simple steps following which you can easily embed Scrollback in your personal website. Step 1: On the Scrollback website, create your own chat room. This chat-room will be the one which will get embedded into your site. The modal window where you can name your room as per your needs Step 2: Once the room is created, you will automatically be re-directed to your room's page. On your room’s page, the left column will have all information about y...

Quarantining Alone - A Once in a Lifetime Opportunity

This Covid-19 virus has turned the entire world upside down. It has broken a lot of older habits and set a lot of new normals. Towards the early days of this lockdown, I had written a blog - An Extrovert in Isolation . The early lockdown days were extremely difficult for me. That was the phase of breaking old habits. An extrovert by nature, couldn't accept the sudden change of being locked alone inside my house. I am writing this blog again after being locked at home for more than 100 days now. Most of the older habits are broken by now. A few new habits have become a part of my new normal. What seemed to have been painful 100 days back has now turned to be blissful. Here, I am sharing my story of how quarantining alone has ended up being the greatest opportunity and a huge transformation in my life.  I have been struggling for years to fix my sleep patterns. Going to bed late and waking up late had been a habit for a really long time. My struggles to change this habit had...

RASCI model - the responsibility assignment matrix

In the last few days, both at my workplace as well as while dealing with a few activities around me, I have realized the importance of implementing a better responsibility assignment matrix, to get things done in a less messed up way. A few months back, during some random conversation, a friend of mine had introduced me to the RASCI model, one of the responsibility assignment matrices. Wikipedia says that the responsibility assignment matrix 'describes the participation by various roles in completing tasks or deliverables for a project or business process.'  In simple words, for any project, if we can divide each person's role and responsibility, it not only ensures a better end product, but also saves the time, otherwise lost in discussions (which organizations like to call as meetings). A RASCI implementation ensures that each person is responsible for only and only the task assigned to him (or her) and will not need to interfere with another person's task, un...