Wednesday, March 7, 2018

How To Install Wifi Drivers in Fedora 27 [Broadcom-wl

Hello Guys,

first we need to install RPMFusion Repo in fedora system.
You Get Free and Non free Repo here,

Http://rpmfusion.org/Configuration

install Both

then

$ sudo dnf update

$ sudo dnf upgrade

then

$ sudo dnf install broadcom-wl

thats it,

Due to the fact I didn't already have the kernel-devel package installed and it is not a required dependency I had to include the following two steps BEFORE running the modprobe command:

sudo dnf install -y kernel-devel
sudo akmods --force --kernel `uname -r` --akmod wl

 

Monday, January 22, 2018

How To install Local .deb (Downloaded) file [Ubuntu] [Linux]

When you use apt to install a package, internally it uses dpkg. When you install a package using apt, it first creates a list of all the dependencies and downloads it from the repository.

Once the download is finished it calls dpkg to install all those files, satisfying all the dependencies.

So if you have a .deb file:

  • You can install it using sudo dpkg -i /path/to/deb/file followed by sudo apt-get install -f
  •  You can install it using sudo apt install ./name.deb (or /path/to/package/name.deb).
    With old apt-get versions you must first move your deb file to /var/cache/apt/archives/ directory. For both, after executing this command, it will automatically download its dependencies.
  • Install gdebi and open your .deb file using it (Right-click -> Open with). It will install your .deb package with all its dependencies.

(Note: APT maintains the package index which is a database of available packages available in repo defined in /etc/apt/sources.list file and in the /etc/apt/sources.list.d directory. All these methods will fail to satisfy the software dependency if the dependencies required by the deb is not present in the package index.)




Source:    https://unix.stackexchange.com/questions/159094/how-to-install-a-deb-file-by-dpkg-i-or-by-apt 

Tuesday, November 14, 2017

Customize Django Admin [Themes]

Hello  Techkie,

There is many Admin Themes. But My Fev. is  " django_admin_bootstrapped "

1)Install Django Admin Bootstrapped.

Requirements: Django 1.8.


 Installation:
  1. Download it from PyPi with pip install django-admin-bootstrapped
  2. Add into the INSTALLED_APPS before 'django.contrib.admin'  

'django_admin_bootstrapped',


Have Fun!!!

Create Virtual Environment [Python] [Ubuntu]

Hello Techkie,

Its been Long time, I haven't posted on my blog. I stuck in some problems.
anyway. I am back on track.

I will show you, How to Create Virtual Environment.


1) Install Virtual Environment

$ [sudo] pip install virtualenv

2)Create Virtual Environment

virtualenv -p /usr/bin/python3.5 <Virtual Env name>

3)Activate Virtual Environment

source <Virtual Env name>/bin/activate  


Wednesday, October 26, 2016

How to create text file for multiple software installation ?

Hello every one,

Today I am going to show you how to create ".txt" file for multiple software installation
I know when any one newly install Linux OS the hard to install one by one software
I am going to show you a easiest way
first you need to create one" .txt " extinction file
example.txt
Then copy this code and paste in " example.txt " file

sudo dnf -y update
echo "================================================================"
echo "                                  Update Successfully Installed "
echo "================================================================"

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg –i google-chrome-stable_current_amd64.deb
echo "================================================================"
echo "                                 chrome Successfully Installed "
echo "================================================================"


sudo dnf -y install vim
echo "================================================================="
echo "                                Vim Successfully Installed                 "
echo "================================================================="



sudo dnf -y install vlc
echo "================================================================="
echo "                               Vlc Player Successfully Installed          "
echo "================================================================="



sudo dnf -y update && sudo apt-get -y install skype
echo "================================================================="
echo " Skype Successfully Installed                 "
echo "================================================================="



sudo -y add-apt-repository ppa:webupd8team/atom
sudo dnf -y install atom
echo"=================================================================="
echo "             Atom Successfully Installed                    "
echo"=================================================================="



sudo dnf -y install aptitude
echo "==========================================================="
echo " Aptitude Successfully Installed   "
echo "==========================================================="
then save the "example.txt" file

then goto Terminal & type


injectorX@sangram ~$ chmod 744 example.txt
why need chmod 744?

chmod 744 means Everybody can read, write to, or execute example.txt.

>>$ ./example.txt

now your all software install one by one automatically



Thanks,
happy coding  :-)

Monday, May 16, 2016

New OS For Node.JS Lover "NodeOS"


Is it possible to create an operating system using only Node.js?
The Answer is Yes.Node OS is written in Node.os Node OS is First OS Powered by Node.js

  1. Linux Kernel:      The entire OS is built off the Linux Kernel.
  2. Node.js runtime:  Node is used as the primary runtime.
  3. npm Packages:     npm is used for package management.

  4. This is Really Awesome News for Node Lover .this os only for them. This OS hosted on Github so it is easy for developer who contribute.



    Wednesday, January 27, 2016

    " Python3 - 101 " Pune Meetup 23Jan-2016

    Posted by Mayur kakade  :)


    Firstly Thanks to all organizers of " python3 - 101 " meetup Pune  for organized such a fabulous meetup.
    this is my first time to attended the awesome python meetup . :)
    and also this is my first blog post for meetup 
    I am very newbie in python . but i am very exited about python .. 
    kushal Das, our mentor at meetup. thank you sir ..
    kushal sir gave us many assignments such as FIZZ-BUZZ,GetPass.
    i cannot understand all concept because  i am newbie. but i am highly motivated by this meetup
    thanks to all and also thanks to Redhat for venue .

     

    Copyright @ 2015 myr kakade .

    Designed by myrTech | Sangram kakade