FSF Issues Statement on Microsoft Joining OIN, RaspEX Build 181010 Now Available for Raspberry Pi 3 Model B+, OpenShift Container Platform 3.11 Released, Kernel Security Update for CentOS 6 and RHEL 6, and Qt Creator 4.8 Beta Is Out

News briefs for October 11, 2018.

Following the news of Microsoft joining the Open Invention Network, the Free
Software Foundation issued a statement
calling on Microsoft to “take
additional steps to continue the momentum toward a complete resolution”.
These steps include “make a clear, unambiguous statement that it has ceased
all patent infringement claims on the use of Linux in Android”; “work
within OIN to expand the definition of what it calls the ‘Linux System’ so
that the list of packages protected from patents actually includes
everything found in a GNU/Linux system”; and “use the past patent royalties
extorted from free software to fund the effective abolition of all patents
covering ideas in software.”

RaspEX Build 181010 is now available for the Raspberry Pi 3 Model B+. It
features the Helium Desktop from BunsenLabs Linux, and according to Softpedia
News
, it’s
“based on the latest Ubuntu 18.04 LTS (Bionic Beaver) operating system
series, using packages from the Debian GNU/Linux 9 ‘Stretch’ and Linaro
open source software for ARM SoCs. RaspEX is compatible with Raspberry Pi
2, Raspberry Pi 3, and Raspberry Pi 3 Model B+.” See also Arne Exton’s release
announcement
for more details.

Red Hat announced the availability of the OpenShift Container Platform 3.11
release yesterday. eWeek
reports
that key highlights with this release “are multiple components
that have been integrated from the CoreOS Tectonic distribution of
Kubernetes, including a new cluster administrator console. Red Hat has also
integrated CoreOS’ Operator concept into OpenShift making it easier for
organizations to deploy cloud native applications.”

CentOS and Red Hat announced an important Linux kernel security update for
CentOS Linux 6 and Red Hat Enterprise Linux 6 that addresses two
vulnerabilities found in those operating systems: CVE-2018-5391
and CVE-2018-14634.Users
should update immediately.
See the Softpedia
News post
for details.

Qt
Creator 4.8 Beta was released
today. This version introduces
experimental support for the Language Server
Protocol
, added some experimental C++ features and added support for
running debuggers on one or more executables simultaneously. You can
download the open-source version here.

Source

Open FinTech Forum Offers Tips for Open Source Success

















Enterprise open source adoption has its own set of challenges, but it becomes easier if you have a clear plan to follow. At Open FinTech Forum, Ibrahim Haddad provides guidelines based on proven practices.

2018 marks the year that open source disrupts yet another industry, and this time it’s financial services. The first-ever Open FinTech Forum, happening October 10-11 in New York City, focuses on the intersection of financial services and open source. It promises to provide attendees with guidance on building internal open source programs along with an in-depth look at cutting-edge technologies being deployed in the financial sector, such as AI, blockchain/distributed ledger, and Kubernetes.

Several factors make Open FinTech Forum special, but the in-depth sessions on day 1 especially stand out. The first day offers five technical tutorials, as well as four working discussions covering open source in an enterprise environment, setting up an open source program office, ensuring license compliance, and best practices for contributing to open source projects.

Enterprise open source adoption has its own set of challenges, but it becomes easier if you have a clear plan to follow. At Open FinTech, I’ll present a tutorial session called “Using Open Source: An Enterprise Guide,” which provides a detailed discussion on how to use open source. We’ll start by answering the question, “Why Open Source,” then discuss how to build an internal supporting infrastructure and look at some lessons learned from over two decades of enterprise open source experience. This session — run under the Chatham House Rule — offers a workshop-style environment that is a mix of presentation and discussion triggered by audience questions. The workshop is divided into five sections, explored below.

Why Open Source?

This question may seem trivial but it’s a very important consideration that even the most open source mature companies revisit regularly. In this part of the workshop, we’ll examine seven key reasons why enterprises should engage with open source software, regardless of industry and focus, and how they can gain incredible value from such engagements.

The Importance of Open Source Strategy

Going through the exercise of establishing an open source strategy is a great way to figure out your company’s current position and its future goals with respect to open source. These strategy discussions will usually evolve around goals you’d like to achieve, along with why and how you’d like to achieve them. In this part of the tutorial, we discuss the many questions to consider when determining your open source strategy and tie that to your product and services strategy for a path to a better ROI.

Implementing an Open Source infrastructure

Once you have identified your company’s open source strategy, you need to build infrastructure to support your open source efforts and investments. That infrastructure should act as a enabler for your efforts in using open source, complying with license, contributing to projects, and leading initiatives. In the workshop, I’ll present these various elements that together form an incredible enabling environment for your open source efforts.

Recommended Practices (17 of them)

When IBM pledged to spend $1 billion on Linux R&D back in 2000, it was a major milestone. IBM was a pioneer in the enterprise open source world, and the company had to learn a lot about working with open source software and the various communities. Other companies have since followed suit, and many more are now entering open source as it becomes the new normal of software development. The question is: How can you minimize the enterprise learning curve on your own open source journey? We’ve got you covered. In this talk, we’ll explore 17 lessons learned from nearly two decades of enterprise experience with open source software.

Challenges

Beyond implementing these best practices, open source adoption requires a cultural shift from traditional software development practices to a more open and collaborative mindset. Internal company dynamics need to be favorable to open source efforts. As an open source leader inside your organization, you will face several challenges in terms of funding resources, justifying ROI, getting upstream focus, etc. These challenges often require a major shift in mindset and a lot of education up the chain. We will explore various considerations relating to culture, processes, tools, continuity, and education to ensure you are on track to open source success in your organization.

We hope to see you at Open FinTech Forum for an informative and high-value event.

Sign up to receive updates on Open FinTech Forum:
















Source

Book review: Ed Mastery – nixCraft

Book review: Ed Masteryed is a powerful line text editor for the Linux and Unix-like systems. It was one of the first standard Unix text editor developed in 1969 by Ken Thompson. Much older and legacy Unix like system only shipped with ed for the rescue purpose. There was no vi. So learning ed might be a good idea. A low-level understanding of ed editor helps when one uses a high-level application such as vi or vim. The “Ed Mastery” book teaches you how to use the ed and forgotten art of Unix where the line-oriented paradigm is the only option. The author describe book as, “If you don’t know ed, you’re not a real sysadmin. Forty years after ed’s introduction, author Michael W Lucas has finally unlocked the mysteries of ed for everyone. With Ed Mastery, you too can become a proper Unix sysadmin.”

Ed Mastery

There are eight chapters. Each chapter introduces to basic concepts of ed text editor. These chapters teach you concepts such as:

  1. Getting started with ed
  2. How to view, print, delete, find/replace and edit a file
  3. How to enter and end all commands
  4. Advanced search and replace text
  5. File management (writing or loading files) and running Unix shell commands
  6. Moving around a file or append something to the file
  7. Shell scripting and more.

The author covered FreeBSD (macOS) and Linux version of ed with some feature specific to Linux or FreeBSD only.

The modern text editor such as vim or emacs is arguably one of the best text editors in existence. But, they lack the simplicity of ed. Unix like system known for its simplicity and KISS (Keep It Simple Stupid), principles. If someone wants to learn ed, grab this book. Much of stuff learned in this book can apply to other applications. Some might say ed is hard to learn. Ed’s learning curve is steep but “Ed Mastery” will take away the fear of learning line editor.

The book is available in two editions as follows:

  1. Ed Mastery: The Standard Unix Text Editor (IT Mastery) – Priced at $9.99
  2. Ed Mastery: Manly McManface Edition: The Standard Unix Text Editor – Every so often, men contact the author complaining that his books use both male and female pronouns. This special edition, using only male third-person pronouns, is for those special people. As the market is so much smaller, it’s unfortunately priced higher. For each copy of the Manly McManface edition sold, the author will donate one dollar to his local chapter of Soroptomists International – Priced at $29.99

Book Info:

  • Title: Ed Mastery.
  • Author: Michael W. Lucus.
  • Publisher: Tilted Windmill Press.
  • Length: 104 pages.
  • Target: System administrators or developers.
  • Rating: 5/5.
  • Disclaimer: Tilted Windmill Press sent us a review copy.
  • Purchase online at Amazon (Ed Mastery: Manly McManface Edition: The Standard Unix Text Editor at Amazon).

Posted by: Vivek Gite

The author is the creator of nixCraft and a seasoned sysadmin, DevOps engineer, and a trainer for the Linux operating system/Unix shell scripting. Get the latest tutorials on SysAdmin, Linux/Unix and open source topics via RSS/XML feed or weekly email newsletter.

Source

Chrome OS Stable Channel Gets Linux Apps | Linux.com

After months of user testing in developer and beta channels, the Crostini project at Google finally delivered the goods, Linux apps for most users of Chromebooks in the stable channeldefinitely worth the wait. While this still is aimed primarily at developers using Chromebooks, I think there’s a good chance these Linux apps will be used and enjoyed by the general public using Chromebooks as well. There’s still a bit of a learning curve to overcome before that possibility is realized, but if you already are a user of any Linux distro, it will feel very familiar. Here’s an overview of how to install it and what to expect afterward.

After getting the update to version 69, go to Settings and scroll down a bit, and you’ll see the option to turn on Linux apps. Figure 1 shows this first step. Note that this isn’t available on all Chromebooks; if you’re using an older one, you’ll have to wait a while before this function is available. If you don’t see the option to turn on Linux apps, your Chromebook currently lacks that functionality. But, if you have a Chromebook produced in the past two years, you probably will see the option.

Read more at Linux Journal

Click Here!

Source

How To Change MAC Address in Kali Linux Using Macchanger

Last updated: July 11 2017

Today you’ll learn how to spoof your MAC address in Kali Linux using macchanger.

Before I start, there are two ways to go about changing your MAC address in Kali Linux.

1. Using Macchanger
2. Manually​

I’ll be showing you how to do both.

​So, what is macchanger?

Macchanger is a free MAC address manipulation tool that comes pre-installed in Kali Linux.

In short, Macchanger makes it easy to spoof or change your MAC address.

Here’s a quick how-to navigation for those who want to jump ahead.

NOTE: If macchanger is not installed on your system, follow the steps below to install it.

How to install Macchanger

Open up a terminal and type the following:

sudo apt-get install macchanger

During the installation process, you’ll be asked if you want to spoof the MAC address each time you attach a ethernet cable or a network adapter.

If you select yes, you’ll automatically be assigned a new MAC address for each interface brought up or plugged in. It’s up to you if you want to enable this or not.

It’s up to you if you want to enable this or not.

If you have mac-filtering enabled on your router, you’ll want to select NO on this one; otherwise, you won’t be able to connect to your own wifi.

configure macchanger kali linux

Afterwards, check to make sure it’s installed and working by typing “macchanger” in the terminal.

It should look like this:

kali linux macchanger

How to display available network interfaces

Next, we need to determine the interface we want to spoof.

To list all available network interfaces on your system, type the following command:

ifconfigifconfig determine interface to spoof

Depending on which interface you want to spoof, you’ll want to make sure you use the name of your interface. Mine is “wlan0.”

Now that we know what interface to use, it’s time to get spoofin!

Bring down the interface you want to spoof

If you spoof without bringing down the interface, you’ll get the “insufficient permission” or “device is busy” error.

You must always bring the interface down before changing the MAC address.

Here’s how:

ifconfig wlan0 down

Remember to replace “wlan0” with your interface.

Print your MAC address

This will show you the current (and permanent) MAC address of an interface.

-s = print the MAC address

macchanger -s wlan0​

Set (specify) your MAC address

This will set your MAC address to whatever value you assign it.

-m = set the MAC address

macchanger -m 11:22:33:44:55:66 wlan0

Change MAC address to a random vendor

This will randomize your MAC address and it will use one from a known vendor.

NOTE: A vendor is the manufacturer of the network interface card (ie. TP-LINK TECHNOLOGIES CO., LTD)

-A = set a random MAC address of any kind.

macchanger -A wlan0

Change MAC address but use the same vendor

This will randomize your MAC address but it will use the same vendor as your current one.

-a = set a random MAC address of the same kind

macchanger -a wlan0

Change to a fully random MAC address with no vendor

This will set a fully random MAC address with no vendor.

If you were to use a MAC address lookup tool, it won’t be able to detect the manufacturer because it’s completely made up.

-r = set a fully random MAC address

macchanger -r wlan0

Reset (change back) to original MAC address

This will revert the changes and it will go back to using the permanent MAC address of the interface.

-p = reset to original MAC address ​

macchanger -p wlan0

View a list of known MAC vendors

If you want to set your own MAC address, this will show you a huge list of legit MAC vendors ​you can choose from.

-l = print known vendors

macchanger -l

NOTE: After making changes to the MAC address, you’ll need to bring the interface back up by typing: ifconfig wlan0 up.

How to manually change MAC address (without using macchanger)

If you don’t have macchanger installed, here’s how to change your MAC address manually.

For this to work, you have to use a MAC address from a known vendor. Fully random MAC address won’t always work.

ifconfig wlan0 down
ifconfig ​wlan0 hw ether fc:c7:34:12:bc:1c
ifconfig wlan0 up

That’s it! Let me know if you have any questions. I’ll be glad to help.

Source

OSSEC Intrusion Detection Installation On Centos 7

OSSEC Installation On CentOS 7

OSSEC (Open Source HIDS SECurity) is an open source host-based intrusion detection system (HIDS). It performs log analysis, integrity scanning, rootkit detection, time-based alerting, and active responses to triggers. You can install it on linux, windows, and mac. It allows for both local installs as well as an agent that can be deployed out to multiple systems with a centralized logging system. It is capable of scanning logs, file intregrity monitoring, and action based responses to threats. This guide covers how to perform a basic install on CentOS. To view their official documentation and site you can visit the github project. This guide is for a installation of a local version, however, it can be deployed to thousands of servers with agents reporting into a centralized server.

Preparing To Install Ossec

Install the packages needed for installation:

yum install -y gcc inotify-tools bind-utils

Change to the source directory to download ossec:

cd /usr/src

Get the newest release

wget -O ossec.2.9.3.tar.gz https://github.com/ossec/ossec-hids/archive/2.9.3.tar.gz

Unpack the tar file

tar xfvz ossec.2.9.3.tar.gz

Change directories:

cd ossec-hids-2.9.3/

Ossec Installation

Start the installer:

./install.sh

Once the installer has been started, it will walk you through a series of options to install OSSEC. Unless you are planning on running agent and server on different servers, select local install

1- What kind of installation do you want (server, agent, local, hybrid or help)? local

– Local installation chosen.

You can select the default installation path or choose another one.

2- Setting up the installation environment.

– Choose where to install the OSSEC HIDS [/var/ossec]:

Determine if the OSSEC installation should send email notifications

3.1- Do you want e-mail notification? (y/n) [y]: y
– What’s your e-mail address? [email protected]
– What’s your SMTP server ip/host? domain.com

The integrity check daemon will check files against a database of md5sums for changes to files:

3.2- Do you want to run the integrity check daemon? (y/n) [y]: y

– Running syscheck (integrity check daemon).

The rootkit detection will check for common rootkits”

3.3- Do you want to run the rootkit detection engine? (y/n) [y]: y

– Running rootcheck (rootkit detection).

Active response will allow OSSEC to response to events and execute ip blocks etc:3.4- Active response allows you to execute a specific
command based on the events received. For example,
you can block an IP address or disable access for
a specific user.
More information at:
http://www.ossec.net/en/manual.html#active-response

– Do you want to enable active response? (y/n) [y]: n

– Active response disabled.3.6- Setting the configuration to analyze the following logs:
— /var/log/messages
— /var/log/secure
— /var/log/maillog

– If you want to monitor any other file, just change
the ossec.conf and add a new localfile entry.
Any questions about the configuration can be answered
by visiting us online at http://www.ossec.net .

— Press ENTER to continue —

Use the following commands to start or stop ossec:

– To start OSSEC HIDS:
/var/ossec/bin/ossec-control start- To stop OSSEC HIDS:
/var/ossec/bin/ossec-control stop

This completes the initial install of the application, the configuration can be viewed or modified at /var/ossec/etc/ossec.conf with more granular options for configuration of the platform.

Mar 26, 2018LinuxAdmin.io

Source

elementary OS 0.4.1 Loki Installation on Oracle VirtualBox

elementary OS 0.4.1 Loki Installation
elementary OS 0.4.1 Loki Installation on Oracle VirtualBox

This video tutorial shows

elementary OS 0.4.1 installation

on Oracle

VirtualBox

step by step. This tutorial is also helpful to install elementary OS Loki on physical computer or laptop hardware. We also install Guest Additions on elementary OS 0.4.1 for better performance and usability features such as Automatic Resizing Guest Display, Shared Folder, Seamless Mode and Shared Clipboard, Improved Performance and Drag and Drop.

elementary OS 0.4.1 Installation Steps:

  1. Create Virtual Machine on Oracle VirtualBox
  2. Start elementary OS 0.4.1 Loki Installation
  3. Install Guest Additions
  4. Test Guest Additions Features: Automatic Resizing Guest Display and Shared Clipboard

Installing elementary OS 0.4.1 Loki on Oracle VirtualBox

elementary OS 0.4.1 New Features and Improvements

elementary OS 0.4.1

is based on

Ubuntu 16.04.2 LTS

elementary OS Website:

https://elementary.io/

elementary OS 0.4.1 Loki Minimum System Requirements

  1. Intel i3 or comparable dual-core 64-bit processor
  2. 1 GB of system memory (RAM)
  3. 15 GB of disk space
  4. Internet access

Hope you found this elementary OS 0.4.1 Loki installation on Oracle VirtualBox tutorial helpful and informative. Please consider sharing it. Your feedback and questions are welcome!

Source

Quest For The Perfect Linux Distro – Unleaded Hangouts

Quest For The Perfect Linux Distro – Unleaded Hangouts Posted on September 8, 2018

Matt Hartley

Datamation.com

and OpenLogic.com/wazi, Matt also once served as a co-host for a popular Linux-centric podcast. Matt has written about various software titles, such as Moodle, Joomla, WordPress, openCRX, Alfresco, Liferay and more. He also has additional Linux experience working with Debian based distributions, openSUSE, CentOS, and Arch Linux.

(Last Updated On: September 8, 2018)

Quest For The Perfect Linux Distro. Today the gang and I discuss what we’d like to see in the perfect Linux distro or any OS for that matter. Additionally, we also discuss what we really would love to see improved and can’t believe in 2018 remains a problem even to this day.

Join the Hangouts, become a Gold member today!

Support the Show

Matt HartleyDatamation.com

and OpenLogic.com/wazi, Matt also once served as a co-host for a popular Linux-centric podcast.

Matt has written about various software titles, such as Moodle, Joomla, WordPress, openCRX, Alfresco, Liferay and more. He also has additional Linux experience working with Debian based distributions, openSUSE, CentOS, and Arch Linux.

Source

MySQL GUI Tools for Ubuntu 18.04

In this lesson, we will look at some most popular GUI tools to access

MySQL database

on Ubuntu 18.04. These vary in application size and ease of use but they are useful for some features specific to each application only. We will look at these GUI tools and features they offer differently in this post. Let’s get started.

MySQL GUI Tools for Ubuntu 18.04

Sequel Pro

Sequel Pro is an excellent and lightweight tool to access MySQL on local and remote machines. If you are looking for a tool which contains a simple purpose to access MySQL on local and remote machines, this is a very lightweight tool which allows you to quickly connect to a given database with necessary details:

MySQL GUI Tool: Sequel Pro

MySQL GUI Tool: Sequel Pro

As seen in the image above, it allows us to connect to the database through SSH, Socket or Standard connection details. It is possible to save favourite connections so that we can connect to them again whenever needed quickly.

MySQL Workbench

The MySQL Workbench is a tool which is used for many more features than just accessing the database. First, we look at the primary feature this tool provides to us, connecting to a database:

MySQL GUI Tool: MySQL Workbench

MySQL GUI Tool: MySQL Workbench

Clearly, it also provides the same features to connect to a remote database as provided by the Sequel Pro tool we saw before. Apart from this, MySQL Workbench allows us to read tables and convert them directly to EER Diagrams with these steps:

Table to ER Diagram

Table to ER Diagram

The process is called Reverse Engineering. Once it is complete, we will see simply the required result:

Table to ER Diagram

Table to EER Diagram

This is an excellent use to prepare documentation for the currently existing databases and tables & much faster as well than manual work. It is helpful not only to the database administrators but architects and developers as well.

dbForge Studio for MySQL

The dbForge Studio for MySQL has been stated one of the most intelligent service to work with MySQL and MariaDB as well:

dbForge Studio for MySQL

dbForge Studio for MySQL

It is a universal GUI tool for MySQL and MariaDB database development, management, and administration. According to its creators: “The IDE allows us to create and execute queries, develop and debug stored routines, automate database object management, analyze table data via an intuitive interface”. Just like MySQL Workbench, dbForge Studio also allows visual designer for a database:

dbForge Studio

dbForge Studio

The building, editing, and running queries, as well as measuring and optimizing query performance get much simpler with the following functionality:

Try these functionalities and make use of this excellent.

DBManager Professional

The DBManager Professional’s flexibility makes it ideal for today’s rapidly changing business environment, as it is able to manage all the aspects concerning data management. Also, it has a built-in support for today’s most used database engines: MySQL, PostgreSQL, Interbase/Firebird, SQLite, DBF, MSAccess, MSSQL Server, Sybase and Oracle. Advanced User Interface, Powerful Features, Easy Database Integration.

Conclusion

In this lesson, we looked at the four most used MySQL GUI tools which are used across Operating Systems with amazing features and tools to ease the process of Database designing, modelling and debugging.

Source

Install Magento 2 on Ubuntu

E-commerce websites provide a platform for buyers and sellers and make online business easier than before. Ecommerce site can be developed with a variety of different types of web applications. Magento is a popular open source CMS to develop e-commerce website with numerous functionalities, security and minimum programming knowledge. This CMS is supported running on both Windows and Linux. How

Magento 2.2.6

can be installed on Ubuntu is shown in this tutorial.

You have to update the system and confirm that the following packages are installed and working properly before starting Magento Installation steps.

  • Apache2
  • MySQL 5.6+ or MariaDB
  • PHP 7+

Run the following commands to update and check your system is ready to start the installation.

$ sudo apt-get update
$ Apache2
$ PHP –v
$ mysql

If the following output appears then Apache, PHP and MySQL are installed.

Magento Installation Steps

Step-1: Download Magento Installer

Go to the following URL address, select the latest version of Magento and click on DOWNLOAD button. Here ‘Magento Open Source 2.2.6 tar.gz’ is selected and downloaded.

https://magento.com/tech-resources/download

You have to create an account in Magento site to download Magento. So, the following screen will appear before download. Create an account or login to your existing account to start the download process.

Step-2: Create folder and unzip Magento installer

By default, Magento will be downloaded on Downloads folder. Run the commands to create a folder named ‘magento’ under /var/www/html folder and copy the downloaded Magento file on that folder.

$ cd Downloads
$ ls
$ mkdir /var/www/html/magento
$ cp Magento-CE-2.2.6-2018-09-07-02-12-38.tar.gz /var/www/html/magento

Go to magento folder and unzip Magento installer.

$ cd /var/www/html/magento
$ ls
$ tar xzvf Magento-CE-2.2.6-2018-09-07-02-12-38.tar.gz /var/www/html/magento

Step-3: PHP Settings

You have to set permission to edit and save php.ini file.

chmod 777 /etc/php/7.1/apache2/php.ini

Open php.ini file from the location /etc/php/7.1/apache2/ and increase the memory limit and enable the following extensions.

Step-4: Database Setting

Login to MySQL server.

Create a database, ‘magento’.

Step-5: Setting Necessary Permissions

Run the following commands to set the necessary permissions for magento folder and restart the apache server.

$ sudo chown -R www-data:www-data /var/www/html/magento
$ sudo chmod -R /var/www/html/magento
$ sudo service apache2 restart

Step-6: Setup Magento

Open a browser and enter the following URL and click on Agree and Setup Magento button.

http://localhost/magento

If any necessary PHP extension is missing then it will be displayed in this page. Here, two extension are missing or not working, soap and bcmath.

Install the missing extensions.

$ sudo apt-get install php-soap
$ sudo apt-get install php7.1-bcmath

Again run the setup. If everything is ok then click on Next button. Fill up the following form with database hostname, username, password and database name. Click on Next button.

Set the base URL of the store and admin in this step. Here, I have removed admin prefix for easy access.

Next step is for customizing the store. Keep default settings and click on Next.

Create admin account to login to the dashboard of admin panel and click Next.

Click on Install Now button after completing all setup.

If the installation completes successfully then the following screen will appear.

Step-7: Verify Magento is working or not

Run the following URL from the browser to test the store view is working or not.

http://localhost/magento

Run the following URL to login to Admin Panel. Provide the valid username and password that you have created in previous step.

http://localhost/magento/admin

The following admin panel will appear if Magento is installed and working properly.

Hope, this tutorial will help you to learn and use Magento on Ubuntu.

Source

WP2Social Auto Publish Powered By : XYZScripts.com