Home Blog Page 877

IBM Cloud to Easily Replicate VMware Workloads and Enterprise Java

Via a partnership with VMware, IBM is making really easy for organizations to migrate their VMware workloads to the IBM cloud. Big Blue has also laid down the proverbial welcome mat to its enterprise Java users, by providing cloud connectors for its Websphere enterprise Java application server.

The partnership is good news for IBM’s efforts to soak up more share in the emerging cloud market…. The two companies have devised an architecture that allows users to provision VMware environments on the IBM cloud. The IBM Cloud replicates the VMware’s software-defined data center architecture, allowing users to easily migrate their in-house VMware-based workloads, including all their security and network settings, to the 45 IBM data centers worldwide that collectively make up the IBM Cloud.

Read more at The New Stack

GNOME Shell Updated for GNOME 3.20 with Better Identification of VPN Secrets

As part of the recently released GNOME 3.20 Beta 1 desktop environment, the most important component, GNOME Shell, also received various interesting improvements and bugfixes.

GNOME Shell is the user interface of the GNOME desktop environment, and without it, users wouldn’t be able to interact with the GNOME applications and any other components. The latest Beta for the upcoming GNOME 3.20 release, which should see the light of day sometime at the end of March 2016, was released this past weekend…

Read more at Softpedia Linux News

You Can Now Install Antergos Linux with ZFS Thanks to the New Cnchi Installer

Immediately after releasing the new 2016.02.21 ISO build on February 21, 2016, the Antergos Linux developers were proud to inform the community about the promotion of the Cnchi 0.14 installer to the stable channel.

After being in development for quite some time now, Cnchi 0.14 finally reached maturity this past weekend, and it looks like it comes with a significant number of new features, among which we can mention Beta support for the ZFS file system in the Automatic Installation Mode.

Microsoft, Intel, Samsung, & Others Launch IoT Standards Group: Open Connectivity Foundation

Giants of the tech world are banding together to found a new group to support the burgeoning Internet of Things (IoT) industry. The Open Connectivity Foundation (OCF) is touted as an open IoT standards group to unify standards, expedite innovation, and “create IoT solutions and devices that work seamlessly together,” according to a press release.

Founding members include Microsoft, Cisco, Electrolux, General Electric, Intel, Qualcomm, Samsung, ARRIS, and CableLabs, who will work together to create specifications and protocols to ensure devices from a myriad of manufacturers work in harmony.

7 Linux/Unix gzip and gunzip command examples

This is our second post on compression and archiving series. Today we will see how to use gzip and gunzip commands with examples. Gzip(GNU zip) is a compress tool which is available in most of the Linux/Unix based operating systems. Until recent years gzip and bzip2 are most commonly used data compression tools in Linux/Unix. Though gzip compress ratios are not good when compared to bzip2 but it is popular among masses. Gzip software uses Lempel-Ziv coding (LZ77) algorithm for compressing data. In this post we will see how to install, use as well as tips about gzip command.

13 Zip and Unzip command examples in Linux/Unix

 

How to install gzip and gunzip(GNU unzip) command in Linux?

On Redhat, Centos and Fedora based machines

Read Full Post: http://www.linuxnix.com/7-linuxunix-gzip-and-gunzip-command-examples/

Lessons from the Linux Mint Hack

Unless you’re completely unplugged from the Linux news media, by now you’ve heard about the exploit that affected both the Linux Mint WordPress site and the Linux Mint 17.3 Cinnamon edition.

What you need to know:

  • Softpedia provides a solid account and breakdown of events. However, they did miss something…more on that later. If you’re into screen shots and the details of the event, check it out.
  • ISO Torrents were not affected.
  • SSL wouldn’t have protected swat. Don’t misunderstand, it does protect against OTHER potential attacks, but the initial point of entry was WordPress. Remember the entry point of attack was WordPress, so for this specific attack, Clem’s statement below is correct. However, offering anything for download without SSL in play is a special kind of dangerous. Let’s hope they keep the site offline until SSL is implemented. (Read the rest at Freedom Penguin)

A Skeleton Key of Unknown Strength

linux-img-2Dan Kaminsky writes: The glibc DNS bug (CVE-2015-7547) is unusually bad.  Even Shellshock and Heartbleed tended to affect things we knew were on the network and knew we had to defend.  This affects a universally used library (glibc) at a universally used protocol (DNS).  Generic tools that we didn’t even know had network surface (sudo) are thus exposed, as is software written in programming languages designed explicitly to be safe. Who can exploit this vulnerability?

We know unambiguously that an attacker directly on our networks can take over many systems running Linux.  What we are unsure of is whether an attacker anywhere on the Internet is similarly empowered, given only the trivial capacity to cause our systems to look up addresses inside their malicious domains.

Read more at Dan Kaminsky’s blog

What is a sticky Bit and how to set it in Linux?

Today we will see how to set Sticky Bit in Linux. This is next to SGID in our ongoing File and Folder permissions series in Linux. We already discussed about CHMODUMASKCHOWN,CHGRPSGID and SUID file and folder permissions etc in our previous posts. In this post we will see

  • What is Sticky Bit?
  • Why we require Sticky Bit?
  • Where we are going to implement Sticky Bit?
  • How to implement Sticky Bit in Linux?

What is Sticky Bit?

Sticky Bit is mainly used on folders in order to avoid deletion of a folder and its content by other users though they having write permissions on the folder contents. If Sticky bit is enabled on a folder, the folder contents are deleted by only owner who created them and the root user. No one else can delete other users data in this folder(Where sticky bit is set). This is a security measure to avoid deletion of critical folders and their content(sub-folders and files), though other users have full permissions

Read Full Post: http://www.linuxnix.com/sticky-bit-set-linux/

How To: Install/Upgrade to Linux Kernel 4.4.2 in Ubuntu/Linux Mint Systems

The Linux Kernel 4.4.2 is now available for the users, announced Linus Torvalds. This Linux Kernel version comes with plenty of fixes and improvements. This article will guide you to install or upgrade to Linux Kernel 4.4.2 in your Ubuntu or Linux Mint system.

Installation

For 32-Bit Systems

Download the .deb packages.

$ wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.2-wily/linux-headers-4.4.2-040402_4.4.2-040402.201602171633_all.deb
$ wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.2-wily/linux-headers-4.4.2-040402-generic_4.4.2-040402.201602171633_i386.deb
$ wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.2-wily/linux-image-4.4.2-040402-generic_4.4.2-040402.201602171633_i386.deb

Install them.

$ sudo dpkg -i linux-headers-4.4.2*.deb linux-image-4.4.2*.deb

Reboot the system.

sudo reboot

Read full article here

12 examples to use flower brackets in Linux

This is a small post on how to crate multiple files/folders, sequence generation with flower brackets in-order to save valuable time.

Creating empty files can be done with touch command. We will see how to create multiple files using this command in one shot.

Example 1: Create a file with name abc.txt

touch abc.txt

Example2: Create multiple files abc, cde, efg, hij, klm

touch  abc cde efg hij klm

Example 3: How about creating 1 to 20 files, ie creating multiple files with one command. Its bit tedious job for an admin. Don’t worry Linux provide us with some useful option with “Flower braces†to do expansion. Instead of writing below command

touch 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

We can create 20 files using flower brace {} expansion as shown below..

Read Full Post: http://www.linuxnix.com/12-examples-flower-brackets-linux/