Sunday 30 September 2018

Canarytokens - Honeypots Made Easy By HackerSploit

Harry


Canarytokens - Honeypots Made Easy By HackerSploit.

In This Video HackerSploit Will Be Demonstrating How To Setup Canarytokens. Canarytokens Lets You Implant Traps In Your Production Systems Rather Than Setting Up Separate Honeypots.

Saturday 29 September 2018

nmcli examples RHEL 7

Harry
Youtube Channel Videos
Example 1. Listing available Wi-Fi APs

$ nmcli device wifi list
           *  SSID               MODE    CHAN  RATE       SIGNAL  BARS  SECURITY
              netdatacomm_local  Infra   6     54 Mbit/s  37      ▂▄__  WEP
           *  F1                 Infra   11    54 Mbit/s  98      ▂▄▆█  WPA1
              LoremCorp          Infra   1     54 Mbit/s  62      ▂▄▆_  WPA2 802.1X
              Internet           Infra   6     54 Mbit/s  29      ▂___  WPA1
              HPB110a.F2672A     Ad-Hoc  6     54 Mbit/s  22      ▂___  --
              Jozinet            Infra   1     54 Mbit/s  19      ▂___  WEP
              VOIP               Infra   1     54 Mbit/s  20      ▂___  WEP
              MARTINA            Infra   4     54 Mbit/s  32      ▂▄__  WPA2
              N24PU1             Infra   7     11 Mbit/s  22      ▂___  --
              alfa               Infra   1     54 Mbit/s  67      ▂▄▆_  WPA2
              bertnet            Infra   5     54 Mbit/s  20      ▂___  WPA1 WPA2

       This command shows how to list available Wi-Fi networks (APs). You can also use
       --fields option for displaying different columns.  nmcli -f all dev wifi list
       will show all of them.

Example 2. Showing general information and properties for a Wi-Fi interface

$ nmcli -p -f general,wifi-properties device show wlan0
           ====================================
                                   Device details (wlan0)
           ====================================
           GENERAL.DEVICE:           wlan0
           GENERAL.TYPE:             wifi
           GENERAL.VENDOR:           Intel Corporation
           GENERAL.PRODUCT:          PRO/Wireless 5100 AGN [Shiloh] Network Connection
           GENERAL.DRIVER:           iwlwifi
           GENERAL.DRIVER-VERSION:   3.8.13-100.fc17.x86_64
           GENERAL.FIRMWARE-VERSION: 8.83.5.1 build 33692
           GENERAL.HWADDR:           00:1E:65:37:A1:D3
           GENERAL.MTU:              1500
           GENERAL.STATE:            100 (connected)
           GENERAL.REASON:           0 (No reason given)
           GENERAL.UDI:              /sys/devices/pci0000:00/0000:00:1c.1/net/wlan0
           GENERAL.IP-IFACE:         wlan0
           GENERAL.IS-SOFTWARE:      no
           GENERAL.NM-MANAGED:       yes
           GENERAL.AUTOCONNECT:      yes
           GENERAL.FIRMWARE-MISSING: no
           GENERAL.CONNECTION:       My Alfa WiFi
           GENERAL.CON-UUID:         85194f4c-d496-4eec-bae0-d880b4cbcf26
           GENERAL.CON-PATH:         /org/freedesktop/NetworkManager/ActiveConnection/
           10
           ---------------------------------------------------------------------------
           WIFI-PROPERTIES.WEP:      yes
           WIFI-PROPERTIES.WPA:      yes
           WIFI-PROPERTIES.WPA2:     yes
           WIFI-PROPERTIES.TKIP:     yes
           WIFI-PROPERTIES.CCMP:     yes
           WIFI-PROPERTIES.AP:       no
           WIFI-PROPERTIES.ADHOC:    yes
           ---------------------------------------------------------------------------

       This command shows information about a Wi-Fi device.

Example 3. Listing NetworkManager polkit permissions

$ nmcli general permissions

           PERMISSION                                                VALUE
           org.freedesktop.NetworkManager.enable-disable-network     yes
           org.freedesktop.NetworkManager.enable-disable-wifi        yes
           org.freedesktop.NetworkManager.enable-disable-wwan        yes
           org.freedesktop.NetworkManager.enable-disable-wimax       yes
           org.freedesktop.NetworkManager.sleep-wake                 no
           org.freedesktop.NetworkManager.network-control            yes
           org.freedesktop.NetworkManager.wifi.share.protected       yes
           org.freedesktop.NetworkManager.wifi.share.open            yes
           org.freedesktop.NetworkManager.settings.modify.system     yes
           org.freedesktop.NetworkManager.settings.modify.own        yes
           org.freedesktop.NetworkManager.settings.modify.hostname   auth
           org.freedesktop.NetworkManager.settings.modify.global-dns auth
           org.freedesktop.NetworkManager.reload                     auth

       This command shows configured polkit permissions for various NetworkManager
       operations. These permissions or actions (using polkit language) are configured
       by a system administrator and are not meant to be changed by users. The usual
       place for the polkit configuration is
       /usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy.  pkaction
       command can display description for polkit actions.

             pkaction --action-id org.freedesktop.NetworkManager.network-control --verbose


       More information about polkit can be found at
       http://www.freedesktop.org/wiki/Software/polkit.

Example 4. Listing NetworkManager log level and domains

$ nmcli general logging
           LEVEL  DOMAINS
           INFO PLATFORM,RFKILL,ETHER,WIFI,BT,MB,DHCP4,DHCP6,PPP,WIFI_SCAN,IP4,IP6,A
           UTOIP4,DNS,VPN,SHARING,SUPPLICANT,AGENTS,SETTINGS,SUSPEND,CORE,DEVICE,OLPC,
           WIMAX,INFINIBAND,FIREWALL,ADSL,BOND,VLAN,BRIDGE,DBUS_PROPS,TEAM,CONCHECK,DC
           B,DISPATCH


       This command shows current NetworkManager logging status.

Example 5. Changing NetworkManager logging
 
$ nmcli g log level DEBUG domains CORE,ETHER,IP
 

$ nmcli g log level INFO domains DEFAULT

       The first command makes NetworkManager log in DEBUG level, and only for CORE,
       ETHER and IP domains. The second command restores the default logging state.
       Please refer to the NetworkManager.conf(5) manual page for available logging
       levels and domains.

Example 6. Adding a bonding master and two slave connection profiles

$ nmcli con add type bond ifname mybond0 mode active-backup
 

$ nmcli con add type ethernet ifname eth1 master mybond0
 

$ nmcli con add type ethernet ifname eth2 master mybond0

       This example demonstrates adding a bond master connection and two slaves. The
       first command adds a master bond connection, naming the bonding interface
       mybond0 and using active-backup mode. The next two commands add slaves
       connections, both enslaved to mybond0. The first slave will be bound to eth1
       interface, the second to eth2.

Example 7. Adding a team master and two slave connection profiles

$ nmcli con add type team con-name Team1 ifname Team1 config team1-master-json.conf
 

$ nmcli con add type ethernet con-name Team1-slave1 ifname em1 master Team1
 

$ nmcli con add type ethernet con-name Team1-slave2 ifname em2 master Team1

       This example demonstrates adding a team master connection profile and two
       slaves. It is very similar to the bonding example. The first command adds a
       master team profile, naming the team interface and the profile Team1. The team
       configuration for the master is read from team1-master-json.conf file. Later,
       you can change the configuration with modify command (nmcli con modify Team1
       team.config team1-master-another-json.conf). The last two commands add slaves
       profiles, both enslaved to Team1. The first slave will be bound to em1
       interface, the second to em2. The slaves don't specify config and thus teamd
       will use its default configuration. You will activate the whole setup by
       activating both slaves:

$ nmcli con up Team1-slave1
 

$ nmcli con up Team1-slave2

       By default, the created profiles are marked for auto-activation. But if another
       connection has been activated on the device, the new profile won't activate
       automatically and you need to activate it manually.

Example 8. Adding a bridge and two slave profiles

$ nmcli con add type bridge con-name TowerBridge ifname TowerBridge
 
$ nmcli con add type ethernet con-name br-slave-1 ifname ens3 master TowerBridge
 
$ nmcli con add type ethernet con-name br-slave-2 ifname ens4 master TowerBridge
 
$ nmcli con modify TowerBridge bridge.stp no

       This example demonstrates adding a bridge master connection and two slaves. The
       first command adds a master bridge connection, naming the bridge interface and
       the profile as TowerBridge. The next two commands add slaves profiles, both will
       be enslaved to TowerBridge. The first slave will be tied to ens3 interface, the
       second to ens4. The last command will disable 802.1D STP for the TowerBridge
       profile.

Example 9. Adding an ethernet connection profile with manual IP configuration

$ nmcli con add con-name my-con-em1 ifname em1 type ethernet \ip4 192.168.100.100/24 gw4 192.168.100.1 ip4 1.2.3.4 ip6 abbe::cafe
 

$ nmcli con mod my-con-em1 ipv4.dns "8.8.8.8 8.8.4.4"
 

$ nmcli con mod my-con-em1 +ipv4.dns 1.2.3.4
 

$ nmcli con mod my-con-em1 ipv6.dns "2001:4860:4860::8888 2001:4860:4860::8844"
 

$ nmcli -p con show my-con-em1

       The first command adds an Ethernet connection profile named my-con-em1 that is
       bound to interface name em1. The profile is configured with static IP addresses.
       Three addresses are added, two IPv4 addresses and one IPv6. The first IP
       192.168.100.100 has a prefix of 24 (netmask equivalent of 255.255.255.0).
       Gateway entry will become the default route if this profile is activated on em1
       interface (and there is no connection with higher priority). The next two
       addresses do not specify a prefix, so a default prefix will be used, i.e. 32 for
       IPv4 and 128 for IPv6. The second, third and fourth commands modify DNS
       parameters of the new connection profile. The last con show command displays the
       profile so that all parameters can be reviewed.

Example 10. Convenient field values retrieval for scripting

$ nmcli -g ip4.address connection show my-con-eth0
           192.168.1.12/24

$ nmcli -g ip4.address,ip4.dns connection show my-con-eth0
           192.168.1.12/24
           192.168.1.1

$ nmcli -g ip4 connection show my-con-eth0
           IP4:192.168.1.12/24:192.168.1.1::192.168.1.1::


       This example shows retrieval of ip4 connection field values via the --get-values
       option. Multiple comma separated fields can be provided: they will be printed
       one per line. If a whole section is provided instead of a single field, the name
       of the section will be printed followed by all the related field values on the
       same line. See also --terse, --mode, --fields and --escape options in nmcli(1)
       manual page for more customized output.

Example 11. Escaping colon characters in tabular mode

$ nmcli -t -f general -e yes -m tab dev show eth0
           GENERAL:eth0:ethernet:Intel Corporation:82567LM Gigabit Network Connection:
           e1000e:2.1.4-k:1.8-3:00\:22\:68\:15\:29\:21:1500:100 (connected):0 (No reas
           on given):/sys/devices/pci0000\:00/0000\:00\:19.0/net/eth0:eth0:yes:yes:no:
           ethernet-13:89cbcbc6-dc85-456c-9c8b-bd828fee3917:/org/freedesktop/NetworkMa
           nager/ActiveConnection/9


This example shows escaping colon characters in tabular mode. It may be useful for script processing, because ':' is used as a field separator.

Example 12. nmcli usage in a NetworkManager dispatcher script to make Ethernet and Wi-Fi mutually exclusive
           #!/bin/bash
           export LC_ALL=C

           enable_disable_wifi ()
           {
          result=$(nmcli dev | grep "ethernet" | grep -w "connected")
               if [ -n "$result" ]; then
                   nmcli radio wifi off
               else
                   nmcli radio wifi on
               fi
           }

           if [ "$2" = "up" ]; then
               enable_disable_wifi
           fi

           if [ "$2" = "down" ]; then
               enable_disable_wifi
           fi



       This dispatcher script makes Wi-Fi mutually exclusive with wired networking.
       When a wired interface is connected, Wi-Fi will be set to airplane mode
       (rfkilled). When the wired interface is disconnected, Wi-Fi will be turned back
       on. Name this script e.g. 70-wifi-wired-exclusive.sh and put it into
       /etc/NetworkManager/dispatcher.d/ directory. See NetworkManager(8) manual page
       for more information about NetworkManager dispatcher scripts.

       Example sessions of interactive connection editor

Example 13. Adding an ethernet connection profile in interactive editor (a)
$ nmcli connection edit type ethernet

           ===| nmcli interactive connection editor |===

           Adding a new '802-3-ethernet' connection

           Type 'help' or '?' for available commands.
           Type 'describe [<setting>.<prop>]' for detailed property description.

           You may edit the following settings: connection, 802-3-ethernet (ethernet),
           802-1x, ipv4, ipv6, dcb
           nmcli> print
           ==========================================
                                     Connection details
           ==========================================
           connection.id:                      ethernet-4
           connection.uuid:                    de89cdeb-a3e1-4d53-8fa0-c22546c775f4
           connection.interface-name:          --
           connection.type:                    802-3-ethernet
           connection.autoconnect:             yes
           connection.autoconnect-priority:    0
           connection.timestamp:               0
           connection.read-only:               no
           connection.permissions:
           connection.zone:                    --
           connection.master:                  --
           connection.slave-type:              --
           connection.secondaries:
           connection.gateway-ping-timeout:    0
           ---------------------------------------------------------------------------
           802-3-ethernet.port:                --
           802-3-ethernet.speed:               0
           802-3-ethernet.duplex:              --
           802-3-ethernet.auto-negotiate:      yes
           802-3-ethernet.mac-address:         --
           802-3-ethernet.cloned-mac-address:  --
           802-3-ethernet.mac-address-blacklist:
           802-3-ethernet.mtu:                 auto
           802-3-ethernet.s390-subchannels:
           802-3-ethernet.s390-nettype:        --
           802-3-ethernet.s390-options:
           ---------------------------------------------------------------------------
           ipv4.method:                        auto
           ipv4.dns:
           ipv4.dns-search:
           ipv4.addresses:
           ipv4.gateway:                       --
           ipv4.routes:
           ipv4.route-metric:                  -1
           ipv4.ignore-auto-routes:            no
           ipv4.ignore-auto-dns:               no
           ipv4.dhcp-client-id:                --
           ipv4.dhcp-send-hostname:            yes
           ipv4.dhcp-hostname:                 --
           ipv4.never-default:                 no
           ipv4.may-fail:                      yes
           ---------------------------------------------------------------------------
           ipv6.method:                        auto
           ipv6.dns:
           ipv6.dns-search:
           ipv6.addresses:
           ipv6.gateway:                       --
           ipv6.routes:
           ipv6.route-metric:                  -1
           ipv6.ignore-auto-routes:            no
           ipv6.ignore-auto-dns:               no
           ipv6.never-default:                 no
           ipv6.may-fail:                      yes
           ipv6.ip6-privacy:                   -1 (unknown)
           ipv6.dhcp-hostname:                 --
           ---------------------------------------------------------------------------
           nmcli> goto ethernet
           You may edit the following properties: port, speed, duplex, auto-negotiate,
            mac-address, cloned-mac-address, mac-address-blacklist, mtu, s390-subchann
           els, s390-nettype, s390-options
           nmcli 802-3-ethernet> set mtu 1492
           nmcli 802-3-ethernet> b
           nmcli> goto ipv4.addresses
           nmcli ipv4.addresses> desc

           === [addresses] ===
           [NM property description]
           Array of IP addresses.

           [nmcli specific description]
           Enter a list of IPv4 addresses formatted as:
             ip[/prefix], ip[/prefix],...
           Missing prefix is regarded as prefix of 32.

Example: 192.168.1.5/24, 10.0.0.11/24

nmcli ipv4.addresses> set 192.168.1.100/24
     Do you also want to set 'ipv4.method' to 'manual'? [yes]: yes
 

nmcli ipv4.addresses>
 

nmcli ipv4.addresses> print addresses: 192.168.1.100/24
 

nmcli ipv4.addresses> back
nmcli ipv4> b
nmcli> set ipv4.gateway 192.168.1.1
nmcli> verify
Verify connection: OK
nmcli> print

           ================================================
                                     Connection details
           ================================================
           connection.id:                      ethernet-4
           connection.uuid:                    de89cdeb-a3e1-4d53-8fa0-c22546c775f4
           connection.interface-name:          --
           connection.type:                    802-3-ethernet
           connection.autoconnect:             yes
           connection.autoconnect-priority:    0
           connection.timestamp:               0
           connection.read-only:               no
           connection.permissions:
           connection.zone:                    --
           connection.master:                  --
           connection.slave-type:              --
           connection.secondaries:
           connection.gateway-ping-timeout:    0
           ---------------------------------------------------------------------------
           802-3-ethernet.port:                --
           802-3-ethernet.speed:               0
           802-3-ethernet.duplex:              --
           802-3-ethernet.auto-negotiate:      yes
           802-3-ethernet.mac-address:         --
           802-3-ethernet.cloned-mac-address:  --
           802-3-ethernet.mac-address-blacklist:
           802-3-ethernet.mtu:                 1492
           802-3-ethernet.s390-subchannels:
           802-3-ethernet.s390-nettype:        --
           802-3-ethernet.s390-options:
           ---------------------------------------------------------------------------
           ipv4.method:                        manual
           ipv4.dns:
           ipv4.dns-search:
           ipv4.addresses:                     192.168.1.100/24
           ipv4.gateway:                       192.168.1.1
           ipv4.routes:
           ipv4.route-metric:                  -1
           ipv4.ignore-auto-routes:            no
           ipv4.ignore-auto-dns:               no
           ipv4.dhcp-client-id:                --
           ipv4.dhcp-send-hostname:            yes
           ipv4.dhcp-hostname:                 --
           ipv4.never-default:                 no
           ipv4.may-fail:                      yes
           ---------------------------------------------------------------------------
           ipv6.method:                        auto
           ipv6.dns:
           ipv6.dns-search:
           ipv6.addresses:
           ipv6.routes:
           ipv6.route-metric:                  -1
           ipv6.ignore-auto-routes:            no
           ipv6.ignore-auto-dns:               no
           ipv6.never-default:                 no
           ipv6.may-fail:                      yes
           ipv6.ip6-privacy:                   -1 (unknown)
           ipv6.dhcp-hostname:                 --
           ---------------------------------------------------------------------------
nmcli> set ipv4.dns 8.8.8.8 8.8.4.4
nmcli> print

           ==================================================
                                     Connection details
           ==================================================
           connection.id:                      ethernet-4
           connection.uuid:                    de89cdeb-a3e1-4d53-8fa0-c22546c775f4
           connection.interface-name:          --
           connection.type:                    802-3-ethernet
           connection.autoconnect:             yes
           connection.autoconnect-priority:    0
           connection.timestamp:               0
           connection.read-only:               no
           connection.permissions:
           connection.zone:                    --
           connection.master:                  --
           connection.slave-type:              --
           connection.secondaries:
           connection.gateway-ping-timeout:    0
           ---------------------------------------------------------------------------
           802-3-ethernet.port:                --
           802-3-ethernet.speed:               0
           802-3-ethernet.duplex:              --
           802-3-ethernet.auto-negotiate:      yes
           802-3-ethernet.mac-address:         --
           802-3-ethernet.cloned-mac-address:  --
           802-3-ethernet.mac-address-blacklist:
           802-3-ethernet.mtu:                 1492
           802-3-ethernet.s390-subchannels:
           802-3-ethernet.s390-nettype:        --
           802-3-ethernet.s390-options:
           ---------------------------------------------------------------------------
           ipv4.method:                        manual
           ipv4.dns:                           8.8.8.8,8.8.4.4
           ipv4.dns-search:
           ipv4.addresses:                     192.168.1.100/24
           ipv4.gateway:                       192.168.1.1
           ipv4.routes:
           ipv4.route-metric:                  -1
           ipv4.ignore-auto-routes:            no
           ipv4.ignore-auto-dns:               no
           ipv4.dhcp-client-id:                --
           ipv4.dhcp-send-hostname:            yes
           ipv4.dhcp-hostname:                 --
           ipv4.never-default:                 no
           ipv4.may-fail:                      yes
           ---------------------------------------------------------------------------
           ipv6.method:                        auto
           ipv6.dns:
           ipv6.dns-search:
           ipv6.addresses:
           ipv6.gateway:                       --
           ipv6.routes:
           ipv6.route-metric:                  -1
           ipv6.ignore-auto-routes:            no
           ipv6.ignore-auto-dns:               no
           ipv6.never-default:                 no
           ipv6.may-fail:                      yes
           ipv6.ip6-privacy:                   -1 (unknown)
           ipv6.dhcp-hostname:                 --
           ---------------------------------------------------------------------------
nmcli> verify
Verify connection: OK
nmcli> save
Connection 'ethernet-4' (de89cdeb-a3e1-4d53-8fa0-c22546c775f4) successfully saved.
nmcli> quit

Friday 28 September 2018

PHP Tutorial For Beginners In Hindi By LearnVern

Harry


PHP Tutorial For Beginners In Hindi By LearnVern.

If You Are Thinking About Learning PHP, You Will Not Find A Better PHP Tutorial. The PHP Course At LearnVern Includes The Basics Of PHP With Theory And Practical Examples And Real Life Examples Of Things That A PHP Developer Faces In Real Live Project Development. The Best Part Of The PHP Training At LearnVern Is That It Is Taught In Your Own Language. The Course Starts With An Introduction Of PHP, And Goes Ahead And Explains The Most Important Topics In PHP Like Arrays, Sessions, Include, Functions, Forms, Variables, Class. Not Only Is Every Topic Explained In Detail But Also Includes The How And Why Of Implementing The PHP Code.

Click Here To Enroll Now For Free:- https://goo.gl/SMbhjE

Referral ID:- 6a1ef7


SHARE BY GK

Thursday 27 September 2018

Python Django Tutorial For Beginners In Hindi By LearnVern

Harry


Python Django Tutorial For Beginners In Hindi By LearnVern.

Python Django Training Course Helps Each Candidate Learning It To Develop Applications With The Most Popular Web Framework. Django Is Open Source And Free. It Is Not Just Faster To Create Applications Using Django But It Is Also Smart And Efficient. Many Organizations Like Mozilla, Pinterest, And Nasa Are Creating Their Mission-Critical Applications Using Django.

Python Django Course At Learnvern Will Cover 'List Topics "Getting Started With Django, Models, Forms, Django URL Patterns And Views, Django With Bootstrap, Django User Model, Django Send Email, Django Templates, Django Project Analyzation, Django Class Based Views, Django Tests, Django Rest API.

Click Here To Enroll Now For Free:- https://goo.gl/ieLwo8

Referral ID:- 6a1ef7


SHARE BY GK

Wednesday 26 September 2018

How To Install Android 8 On VirtualBox By Britec09

Harry


How To Install Android 8 On VirtualBox By Britec09.

Want To Install Android 8.1 Oreo On A Old Laptop, Pc, VMware Or VirtualBox? Well, This Video Will Show You How To Step By Step. Its Very Easy To Do. Make Sure You Watch The Whole Video So You Don't Miss Any Steps. If You Want To Install This On A PC Or Laptop, You Will Need To Create A Bootable USB.

Download Android 8.1 Oreo:- https://goo.gl/ACZz5z



SHARE BY GK

Illustrator Tutorial For Beginners In Hindi By LearnVern

Harry


Illustrator Tutorial For Beginners In Hindi By LearnVern.

Adobe’s Vector Graphics Software Illustrator CC Has Been A Boon For Graphic Designers With The Additional New Features Added.

LearnVern’s Illustrator CC Guide For Beginner’s, Covers All The Designing And Drawing Tools, Anchors, Paths, Swatches, Symbols, Gradients, Patterns, Tips And Techniques For Managing Vector Shapes.

Quick Start With Graphic Designing Fundamentals And As You Progress Get Acquainted With How To Create Brochures, Logos, Icons And Many More. Every Tool Has Been Explained With Appropriate Examples And A Repetitive Practice Is Going To Be Advantageous For You, To Get A Hold On The Use Of The Software.

Click Here To Enroll Now For Free:- https://goo.gl/FXiwNa

Referral ID:- 6a1ef7


SHARE BY GK

How to install Krita 4.1.1 released on Ubuntu 18.04

Harry
   Krita is a professional FREE and open source painting program. It is made by artists that want to see affordable art tools for everyone.

  •     concept art
  •     texture and matte painters
  •     illustrations and comics

    Krita 4.1 is the second feature release in the Krita 4 series and is released only three months after 4.0. But there is still a heap of interesting new things and improvements to check out!


Krita 4.1.1 Changelog:
  • Added context menu (right click) options for transform tool. This makes it easier to change your transform type between perspective, free, warp, etc.
  • Added context menu (right click) options for crop. This makes it easier to use without needing the tool options open.
  • New Cursor option. Force brush outline to always be shown at 100%
  • HEIF file format can now be opened and saved to. Thanks to a patch by Dirk Farin. Note that this is not enabled in the default builds because the libraries needed to build the import/export filter are very new.
  • Ask the user what DPI they want their SVG images imported with
  • Multibrush tool now accepts decimals for the angle
  • Fixes to links for new documentation site
  • Fix for animation docker so closing the docker doesn’t make the animation stuck on stop
  • Improve text describing 8 bits/integer channel depth
  • Update g’mic plugin to 2.3.0 (was at 2.2.0)

Installation instructions:

   
Add the PPA to your system, update the local repository index and install the Krita package:

$ sudo add-apt-repository ppa:kritalime/ppa

$ sudo apt-get update

$ sudo apt-get install krita

    Optional, to remove Krita, do:


 $ sudo apt-get remove --autoremove krita










How to install Opera 56 Released on Ubuntu 18.04

Harry
Opera 56 elease there is mostly incremental changes, but we are looking forward to seeing what people can do with the new CSS conical gradient support. Below is a quick overview of changes. Follow the links for more details, specifications and examples.


Features in Opera 56:
  • Add volume control for video pop out.
  • Hover over the title of pop out video and click back to tab.
  • Add new option in Settings > Advanced > Browser > User interface for the scroll to the top of the page feature
  • Add a page zoom indicator in the address and search bar when the zoom level for a page changed.
  • Easy bug reporting via O menu > Help > Report an issue.
  • Redesigned about page, and tidied up the settings.
  • For more, see the announcement.

Installation instructions:

1. Open terminal (Ctrl+Alt+T) and run command to add the opera repository:

$ sudo sh -c 'echo "deb http://deb.opera.com/opera-stable/ stable non-free" >> /etc/apt/sources.list.d/opera.list'

2. Get the key:

$ wget -O - http://deb.opera.com/archive.key | sudo apt-key add -

3. Running command update and install:

$ sudo apt-get update

$
sudo apt-get install opera-stable

Once installed, open the Virtualbox from Ubuntu Dash.

(Optional) To remove  Opera 45, use command:

$ sudo apt-get remove --autoremove opera-stable





Tuesday 25 September 2018

How to install Virtualbox 5.2.18 Released on Ubuntu 18.04

Harry
  VirtualBox  is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL) version 2.


Virtualbox 5.2.18 Changelog:
  • VMM: See user manual.
  • VMM: fix loading with recent binutils and self-built versions of VirtualBox
  • NAT: fix --nataliasmode sameports which is a valid setting
  • VRDP: fixed VM process termination on RDP client disconnect if 3D is enabled for the virtual machine  
Installation instructions:
 
1. Open terminal via Ctrl+Alt+T or from application launcher. Remove old Virtualbox via command:

$ sudo apt-get remove --autoremove virtualbox virtualbox-5.1

2. Add the repository via command:

$ sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" >> /etc/apt/sources.list.d/virtualbox.list'

For Linux Mint, replace $(lsb_release -sc) in the code with the Ubuntu codename that your system depends on.

3. Download and install the repository key via command:

$ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -

$ wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -

4. Running command update and install:

$ sudo apt-get update

$
sudo apt-get install virtualbox-5.2

Once installed, open the Virtualbox from Ubuntu Dash.

(Optional) To remove Virtualbox 5.2, use command:

$ sudo apt-get remove --autoremove virtualbox virtualbox-5.2

How to install Curlew 0.2.5 GTK3 Video Converter for Ubuntu 18.04

Harry
     Curlew is a free multimedia converter for Ubuntu Linux that features small package size, few library dependencies, 100+ output formats, easy to use UI, and more.


Curlew is a GTK3 software written in Python and uses ffmpeg/avconv for media encoding. The latest Curlew 0.2.5 features:
  • Added an option to include all audio tracks of file.
  • Added support for merging files.
  • Added Fade In/Out filter feature.
  • Added paste "from the Clipboard" feature.
  • Use Home directory as default converting destination.
  • Hide unused page/widget.
  • Add xplayer to players list.
  • Colored buttons (Convert/Close).
  • Removed CSD option.
  • Deleted stdeb config files and use native debian packaging system.
  • Fix disabled convert button issue.
  • Updated translations.
  • Bug fixes and code enhancements. 
Installation instructions: 

    In Ubuntu, you can fetch Curlew by typing:

    Open terminal and insert command line...

$ wget https://sourceforge.net/projects/curlew/files/curlew-0.2.5/curlew_0.2.5-1_all.deb

$ sudo apt-get update

$ sudo dpkg -i curlew_*.deb; sudo apt-get -f install

Once installed, launch it from your application launcher








How To Install OpenShot Video Editor 2.4.3 released On Ubuntu 18.04

Harry
   OpenShot Video Editor is a free, open-source video editor for Linux. OpenShot can take your videos, photos, and music files and help you create the film you have always dreamed of. Easily add sub-titles, transitions, and effects, and then export your film to DVD, YouTube, Vimeo, Xbox 360, and many other common formats.

 

OpenShot 2.4.3 release highlights:
  • Masks and transitions can now be modified at any time, and can now use an image or video! This utilizes the grayscale of each frame and converts it into a mask, and can be used to create some really amazing effects.
  • Threading improvements help prevent crashing around effects (including masks and transitions), and improve performance on many systems.
  • Save frame button for quickly saving the current preview frame
  • Huge improvement to language translations
OpenShot 2.4.3 release Changelog:

openshot-qt:
  • Bumping version to 2.4.3 (libopenshot dependency to 0.2.2)
  • Animated Masks: New "reader" property type, initially used by the Mask effect to change the image/video used by transitions and the Mask effect
  • Disable OMP thread concurrency during Export, to make exports as safe as possible
  • Nudge clips when holding SHIFT + Left or Right arrow
  • Add Save Current Frame button
  • New translation & language infrastructure and logic (better logic for determining current language)
  • Fixed split keep both sides (right side position was incorrect)
  • Application icon updates
  • Zoom fixes (lots of issues relating to zooming fixed)
  • Undo/Redo fixes (fixing and preventing giant .osp project files)
  • New tutorial system, better child window management
  • Travis CI Integration
  • Improve Title filename duplication naming/counting
  • Use track names in "Add To Timeline" window
  • Improve waveform display rendering
  • Fix audio wave not rendered after completion
  • Add instagram and twitter presets 
  • And many other changes. See the release note

Installation instructions:

In order to successfully install OpenShot on Ubuntu, you have to add the PPA to your system, update the local repository index and install the openshot-qt package:

$ sudo add-apt-repository ppa:openshot.developers/ppa

$ sudo apt-get update

$ sudo apt-get install openshot-qt libopenshot*
 
 Optional, to remove OpenShot, do:


$ sudo apt-get remove --autoremove openshot-qt


TV Buying Guide | Tips To Buy TV Online & Offline In Hindi By SidTalk

Harry


TV Buying Guide | Tips To Buy TV Online & Offline In Hindi By SidTalk.

TV Buying Guide | LCD VS LED Vs OLED | HD Ready, Full HD, Smart TV | Tips To Buy TV Online, Offline.

In This Video SidTalk Explain to You How To Get To Know Different Types Of Television (TV) & Which TV To Buy Like LCD, LED, OLED, Plasma, Quantum Dot.

What Are The Factors You Need To Check Before Buying TV Or Television Online, Offline Like Screen Resolution: 720p, 1080p, 4k TV.

What Are The Difference Between HD Ready TV (1280x720) & Full HD TV (1920x1080).

SidTalk Explain You Difference Between Smart TV Or Non-Smart TV, Which One Is Better For You For Your Purchasing Decisions.

Refresh Rate Of Television Explained In Hindi, What Is The Best Size Of TV Which Suits Your Room & Budget (32 Inch, 43 Inch, 55 Inch, 64 Inch)

SidTalk Explain You Meaning Of Contrast Ratio Which You Need To Consider While Buying New TV In India.

You, Will, Get To Know 5 Tips & Trick To Buy TV Online Or Offline & Which Brand Is Good For You According To Budget & Location.

This Is The Simple TV Buying Guide In Hindi Which You Can Trust Before Purchasing Any Television & You'll Get To Know The Brands You Can Trust Like: Vu, Mi TCL, Sample,

LG, Sony, Bravia Etc.., How To Buy Best TV In Your Budget, Can We Use TV As Monitor? How TV & Monitor Are Different?

Queries Solved:
  • TV Buying Guide In India
  • How To Choose Best Budget TV (Television) In Hindi
  • Which Brand Is Good For TV & Computer Monitor
  • Difference Between Led, LCD, OLED, QLED, Plasma, Quantum Dot
  • Which TV Is Good To Buy HD Ready 720p Or Full HD 1080p?
  • What Is Smart TV & Non-Smart TV?
  • 3D TV Vs Non-3D TV (3 Dimension Television) 
  • What Is Amazon Fire TV Stick & Google Chrome cast?
  • How To Convert Non-Smart TV In Smart TV Using Amazon Fire tv Stick & Chrome cast?
  • Which TV Brand To Trust In India: Mi, Vu, TCL, Samsung, LG, Sony, Sanyo, Panasonic, Mitashi, Etc..
  • How To Choose A Perfect TV In Hindi According To Your Needs
  • Curved TV Vs Flat TV: Which One Is Best To Buy In India?

SHARE BY GK
Computer Knowledge

Monday 24 September 2018

How to install Gnome MPV (MPV Frontend) 0.15 Released on Ubuntu 18.04

Harry
     GNOME MPV is a simple GTK+ frontend for mpv. GNOME MPV interacts with mpv via the client API exported by libmpv, allowing access to mpv's powerful playback capabilities.
     GNOME MPV is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.


Gnome MPV (MPV Frontend) 0.15  Changelog:
  • Set default screenshot directory to XDG_PICTURES_DIR
  • Improve handling of --window-scale, --autofit, --autofit-larger, and --autofit-smaller
  • Add command line option for setting WM_ROLE
  • Add context menu item for removing playlist items
  • Add context menu item for copying location of playlist items

Installation instructions:

   
Run the following commands in Terminal to install Gnome MPV (MPV Frontend) 0.15, via PPA, on Ubuntu:

$ sudo add-apt-repository ppa:xuzhen666/gnome-mpv

$ sudo apt-get update

$ sudo apt-get install gnome-mpv
 
Optional, to remove SGnome MPV, do:
 
     To uninstall the PPA repository, launch Software & Updates and go to Other Software tab. Or, simply run command in terminal:

$ sudo add-apt-repository --remove ppa:xuzhen666/gnome-mpv

      If you want to uninstall Gnome MPV from Ubuntu Systems, run the following commands in Terminal:

$ sudo apt-get remove --autoremove gnome-mpv





How to install SMPlayer 18.9 Released on Ubuntu 18.04

Harry
  SMPlayer is a free media player for Windows and Linux with built-in codecs that can play virtually all video and audio formats. It doesn't need any external codecs. Just install SMPlayer and you'll be able to play all formats without the hassle to find and install codec packs.



SMPlayer is a graphical user interface (GUI) for the award-winning MPlayer, which is capable of playing almost all known video and audio formats. But apart from providing access for the most common and useful options of MPlayer, SMPlayer adds other interesting features like the possibility to play Youtube videos or download subtitles.

SMPlayer 18.9 Changelog:
  • Fix for YouTube.
  • (Experimental) New option in the Play menu: Cast to -> Smartphone/tablet. It displays a QR code that you can scan to play the video on your device. 

Installation instructions:

   
Run the following commands in Terminal to install SMPlayer 18.9, via PPA, on Ubuntu:

$ sudo add-apt-repository ppa:rvm/smplayer

$ sudo apt-get update

$ sudo apt-get install smplayer
smtube smplayer-themes smplayer-skins

For those who prefer Qt4 version, use the new PPA instead

$ sudo add-apt-repository ppa:rvm/smplayer-qt4

Optional, to remove SMPlayer, do:

     If you want to uninstall SMPlayer from Ubuntu Systems, run the following commands in Terminal:

$ sudo apt-get remove --autoremove smplayer smtube smplayer-*

For the qt4 ppa, replace ppa:rvm/smplayer with ppa:rvm/smplayer-qt4 in the code

Qmmp Music Player 1.2.4 'Winamp Like' on Ubuntu 18.04

Harry
   qmmp is a free and open-source audio player written in C++ with the help of the Qt library. It officially supports the operating systems Linux, FreeBSD and Microsoft Windows. It is the only audio player not featuring a database that uses the Qt library. The default user interface of qmmp is inspired by Winamp


Qmmp 1.2.4 changelog:
  • added equalizer optimization
  • updated translation list
  • improved PCM WAVE support
  • fixed segmentation fault
  • fixed tag reading in the archive plugin
  • fixed seeking in the archive plugin
  • fixed issue with multiscreen configuration
  • updated Polish translation
  • updated Portuguese translation
  • updated Spanish translation
  • updated Ukrainian translation
  • updated Russian translation.

 Installation instructions: 

    We can add this PPA to Ubuntu Operating  Systems and install qmmp Music Player with few easy commands
   Open terminal and insert command line...

$ sudo add-apt-repository ppa:forkotov02/ppa

$ sudo apt-get update

$ sudo apt-get install qmmp qmmp-plugin-pack

For qt4 version, use qmmp-qt4 and qmmp-plugin-pack-qt4 instead in the last command.

Option, uninstall qmmp Music Player

$ sudo apt-get remove --autoremove qmmp qmmp-*