{
    "version": "https://jsonfeed.org/version/1",
    "user_comment": "This feed allows you to read the posts from this site in any feed reader that supports the JSON Feed format. To add this feed to your reader, copy the following URL -- https://2023.wp-devil.com/category/linux-mint/feed/json/ -- and add it your reader.",
    "home_page_url": "https://2023.wp-devil.com/category/linux-mint/",
    "feed_url": "https://2023.wp-devil.com/category/linux-mint/feed/json/",
    "title": "WP Devil 2023",
    "description": "WordPress, ClassicPress, Music and Geekdom",
    "items": [
        {
            "id": "https://2023.wp-devil.com/gtk-youtube-viewer-using-totem-instead-of-the-default-players/",
            "url": "https://2023.wp-devil.com/gtk-youtube-viewer-using-totem-instead-of-the-default-players/",
            "title": "GTK Youtube Viewer: Using totem instead of the default players",
            "content_html": "<p>As a matter of fact, totem aka the GStreamer framework, happens to support playing videos from Youtube directly, as well as offering a slightly cranky search dialogue.<br>\nOut of no reason VLC doesnt want to work together with GTK Youtube Viewer, mplayer is a major resource hog and SMplayer doesnt let me skip / seek back and forward in videos (just stops with an error message when I try to do so) .. so I decided to give good ole totem aka &#8220;the Gnome Video Player&#8221; a try.</p>\n<p>My setup: MX Linux 18, GTK Youtube Viewer 3.5.4, Totem 3.22.1 + plugins (<code>totem totem-common totem-plugins</code>)</p>\n<p>Following is the part pf the video player configuration including the additional part required to get totem working:</p>\n<p>View the code on <a href=\"https://gist.github.com/ginsterbusch/541f6f38c2f0fa61809f73c051b19a7e\">Gist</a>.</p>\n<p>So essentially, its down to:</p>\n<dl>\n<dt>arg</dt>\n<dd>&#8220;*URL*&#8221; &#8211; no additional parameters are available, or at least none that I know of</dd>\n<dt>cmd</dt>\n<dd>&#8220;totem&#8221; &#8211; regular call (could also be <code>/usr/bin/totem</code>, but here on MX Linux, its available within the <code>PATH</code>, so no need for that</dd>\n<dt>fs</dt>\n<dd>&#8211;fullscreen &#8211; parameter is identical to allmost all listed players</dd>\n<dt>str</dt>\n<dd>&#8220;&#8221; &#8211; left empty, because there is no such parameter (for playing subtitles).</dd>\n<dt>audio</dt>\n<dd>Left out, too.</dd>\n</dl>\n",
            "content_text": "As a matter of fact, totem aka the GStreamer framework, happens to support playing videos from Youtube directly, as well as offering a slightly cranky search dialogue.\nOut of no reason VLC doesnt want to work together with GTK Youtube Viewer, mplayer is a major resource hog and SMplayer doesnt let me skip / seek back and forward in videos (just stops with an error message when I try to do so) .. so I decided to give good ole totem aka &#8220;the Gnome Video Player&#8221; a try.\nMy setup: MX Linux 18, GTK Youtube Viewer 3.5.4, Totem 3.22.1 + plugins (totem totem-common totem-plugins)\nFollowing is the part pf the video player configuration including the additional part required to get totem working:\nView the code on Gist.\nSo essentially, its down to:\n\narg\n&#8220;*URL*&#8221; &#8211; no additional parameters are available, or at least none that I know of\ncmd\n&#8220;totem&#8221; &#8211; regular call (could also be /usr/bin/totem, but here on MX Linux, its available within the PATH, so no need for that\nfs\n&#8211;fullscreen &#8211; parameter is identical to allmost all listed players\nstr\n&#8220;&#8221; &#8211; left empty, because there is no such parameter (for playing subtitles).\naudio\nLeft out, too.",
            "date_published": "2019-06-03T22:28:25+02:00",
            "date_modified": "2019-06-03T22:44:25+02:00",
            "author": {
                "name": "fwolf",
                "url": "https://2023.wp-devil.com/author/fwolf/",
                "avatar": "https://secure.gravatar.com/avatar/c2a31599f60eec1232806bfc26066ed2?s=512&d=mm&r=g"
            },
            "image": "https://wp-devil.com/wp-content/uploads/2019/06/gtk-youtube-viewer_with_totem01.jpg",
            "tags": [
                "development",
                "Linux",
                "Linux Mint",
                "Musick"
            ]
        },
        {
            "id": "https://2023.wp-devil.com/ubuntu-lts-14-04-fix-java-1-8-issues/",
            "url": "https://2023.wp-devil.com/ubuntu-lts-14-04-fix-java-1-8-issues/",
            "title": "Ubuntu LTS 14.04: Fix Java 1.8 issues",
            "content_html": "<p>Quick shot for fixing issues with missing Java 1.8:</p>\n<h2>1. Add PPAs</h2>\n<p>Get yourself the right PPA &#8211; apparently JDK 1.8 is still not available for Ubuntu 14.04 (correct me if I&#8217;m wrong though), thus:</p>\n<pre>sudo apt-add-repository ppa:openjdk-r/ppa\r\nsudo add-apt-repository ppa:maarten-fonville/ppa\r\nsudo apt-get update\r\n</pre>\n<p>Source: <a href=\"https://askubuntu.com/a/613324\">https://askubuntu.com/a/613324</a></p>\n<p>As I&#8217;m happily using Synaptic, the next line would probably be: <code>synaptic-pkexec</code> <img src=\"https://twemoji.classicpress.net/14/72x72/1f609.png\" alt=\"\ud83d\ude09\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\"></p>\n<p>You&#8217;d like to look for <code>openjdk-8</code> and install everything you need (usually jre, jdk and headless packages).</p>\n<p>For commandline users, that should probably do it:</p>\n<pre>sudo apt-get install openjdk-8-jdk openjdk-8-jre openjdk-8-headless</pre>\n<h2>2. Switch to correct Java version</h2>\n<p>Right now, after installing the new JDK, nothing should have changed, you&#8217;re still at Java 1.7. Now, you need to use update-alternatives to manually switch over to JRE 8 <img src=\"https://twemoji.classicpress.net/14/72x72/1f642.png\" alt=\"\ud83d\ude42\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\"></p>\n<pre>sudo update-alternatives --config java</pre>\n<p>Source: <a href=\"https://askubuntu.com/a/740782\">https://askubuntu.com/a/740782</a></p>\n<p>In my case, I needed to select <code>/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java</code> &#8211; notice the &#8220;8&#8221; in &#8220;java-8-openjdk&#8221;. And then: Its done!</p>\n",
            "content_text": "Quick shot for fixing issues with missing Java 1.8:\n1. Add PPAs\nGet yourself the right PPA &#8211; apparently JDK 1.8 is still not available for Ubuntu 14.04 (correct me if I&#8217;m wrong though), thus:\nsudo apt-add-repository ppa:openjdk-r/ppa\r\nsudo add-apt-repository ppa:maarten-fonville/ppa\r\nsudo apt-get update\r\n\nSource: https://askubuntu.com/a/613324\nAs I&#8217;m happily using Synaptic, the next line would probably be: synaptic-pkexec \nYou&#8217;d like to look for openjdk-8 and install everything you need (usually jre, jdk and headless packages).\nFor commandline users, that should probably do it:\nsudo apt-get install openjdk-8-jdk openjdk-8-jre openjdk-8-headless\n2. Switch to correct Java version\nRight now, after installing the new JDK, nothing should have changed, you&#8217;re still at Java 1.7. Now, you need to use update-alternatives to manually switch over to JRE 8 \nsudo update-alternatives --config java\nSource: https://askubuntu.com/a/740782\nIn my case, I needed to select /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java &#8211; notice the &#8220;8&#8221; in &#8220;java-8-openjdk&#8221;. And then: Its done!",
            "date_published": "2019-01-27T18:50:21+01:00",
            "date_modified": "2019-01-27T19:13:41+01:00",
            "author": {
                "name": "fwolf",
                "url": "https://2023.wp-devil.com/author/fwolf/",
                "avatar": "https://secure.gravatar.com/avatar/c2a31599f60eec1232806bfc26066ed2?s=512&d=mm&r=g"
            },
            "image": "https://wp-devil.com/wp-content/uploads/2019/01/f_efosxh0si.jpg",
            "tags": [
                "java",
                "jdk 8",
                "jre",
                "linux mint 17.3",
                "ubuntu 14.04",
                "development",
                "Linux",
                "Linux Mint",
                "Ubuntu"
            ]
        }
    ]
}