Teleconsole – Jupiter Broadcasting https://www.jupiterbroadcasting.com Open Source Entertainment, on Demand. Wed, 01 Feb 2017 04:15:41 +0000 en-US hourly 1 https://wordpress.org/?v=5.5.3 https://original.jupiterbroadcasting.net/wp-content/uploads/2019/04/cropped-favicon-32x32.png Teleconsole – Jupiter Broadcasting https://www.jupiterbroadcasting.com 32 32 Death by Download | LINUX Unplugged 182 https://original.jupiterbroadcasting.net/106536/death-by-download-lup-182/ Tue, 31 Jan 2017 20:15:41 +0000 https://original.jupiterbroadcasting.net/?p=106536 RSS Feeds: MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Torrent Feed | WebM Torrent Feed Become a supporter on Patreon: Show Notes: Follow Up / Catch Up KDE – Plasma 5.9 Kicks off 2017 in Style. Tuesday, 31 January 2017. Today KDE releases this year’s first Plasma feature update, Plasma […]

The post Death by Download | LINUX Unplugged 182 first appeared on Jupiter Broadcasting.

]]>
RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Torrent Feed | WebM Torrent Feed

Become a supporter on Patreon:

Patreon

Show Notes:

Follow Up / Catch Up

KDE – Plasma 5.9 Kicks off 2017 in Style.

Tuesday, 31 January 2017. Today KDE releases this year’s first Plasma feature update, Plasma 5.9. While this release brings many exciting new features to your desktop, we’ll continue to provide bugfixes to Plasma 5.8 LTS.

Black market Blackphones get sent a kill message that bricks them [Updated] | Ars Technica

A reader in Germany contacted Ars after the update “bricked” his phone, which he had purchased through eBay. “The Blackphone 2 I’ve received came in retail packaging and looks just like the one that you guys reviewed,” the reader told Ars. “It worked up to Silent OS 3.0.7 Silent OS, [but] 3.0.8 seems to intentionally brick the baseband on some devices.”


TING

macOS patches for Dell XPS 13 9350

This project targets at giving the relatively complete functional macOS for XPS13 9350. Before you start, there’s a brief introduction of how to finish powering up macOS on your laptop

Re: RAID56 status?

I’d like to update the wiki to “More and more RAID5/6 bugs are found” 🙂

OK, no kidding, at least we did exposed several new bugs, and reports
already exists for a while in mail list.

Some examples are:

1) RAID5/6 scrub will repair data while corrupting parity
   Quite ironic, repairing is just changing one corruption to
   another.

2) RAID5/6 scrub can report false alerts on csum error

3) Dev-replace cancel sometimes can cause kernel panic.

And if we find more bugs, I’m not surprised at all.

So, if really want to use RAID5/6, please use soft raid, then build
single volume btrfs on it.

I’m seriously considering to re-implement btrfs RAID5/6 using device
mapper, which is tried and true.

+The SGI XFS Filesystem

Linux Academy

Shutting down FTP services

Building a local Steam caching server to ease the bandwidth blues | Ars Technica

SteamPipe is used to deliver what the client needs, be it a whole game or just an update, in roughly megabyte-size chunks. (Chunking like this allows developers to publish updates without having to push a whole new game package—they just invalidate old chunks and upload new ones.) As Valve points out on the SteamPipe developer community page, SteamPipe uses plain ol’ HTTP rather than a proprietary protocol. And that gives us the opportunity to stick our fingers into the process and mess with it.
How things will work with our Steam caching server if what we want isn’t in cache.

How things will work with our Steam caching server if what we want isn’t in cache.

#

`DigitalOcean

Teleconsole

Teleconsole is a free service to share your terminal session with people you trust.
Your friends can join via a command line via SSH or via their browser over HTTPS.
Use this to ask for help or to connect to your own devices sitting behind NAT.

The post Death by Download | LINUX Unplugged 182 first appeared on Jupiter Broadcasting.

]]>
Noah’s IPSEC Adventure | LAS 454 https://original.jupiterbroadcasting.net/106496/noahs-ipsec-adventure-las-454/ Sun, 29 Jan 2017 21:10:08 +0000 https://original.jupiterbroadcasting.net/?p=106496 RSS Feeds: HD Video Feed | Large Video Feed | Mobile Video Feed | MP3 Audio Feed | Ogg Audio Feed | iTunes Feed | Torrent Feed Become a supporter on Patreon: — Show Notes: — Brought to you by: Linux Academy IPSec Head Office Configuration GRE Tunnels /interface gre add comment=BranchOffice !keepalive name=”To Branch” […]

The post Noah's IPSEC Adventure | LAS 454 first appeared on Jupiter Broadcasting.

]]>
RSS Feeds:

HD Video Feed | Large Video Feed | Mobile Video Feed | MP3 Audio Feed | Ogg Audio Feed | iTunes Feed | Torrent Feed

Become a supporter on Patreon:

Patreon

— Show Notes: —


LinuxAcad

Brought to you by: Linux Academy

IPSec

Head Office Configuration

GRE Tunnels

/interface gre
add comment=BranchOffice !keepalive name=”To Branch” remote-address=192.168.0.2

OSPF Routing

/routing ospf area
add area-id=0.0.0.1 name=”Area 1″
add area-id=0.0.0.2 name=”Area 2″
add area-id=0.0.0.3 name=”Area 3″
add area-id=0.0.0.4 name=”Area 4″

/routing ospf network
add area=”Area 1″ network=192.168.0.0/30
add area=”Area 1″ network=192.168.1.0/24
add area=”Area 2″ network=192.168.0.4/30
add area=”Area 3″ network=192.168.0.8/30
add area=”Area 4″ network=192.168.0.12/30

IP Addresses

/ip address
add address=192.168.0.1/30 comment=Branch interface=”To Branch”

NAT Bypass for IPSEC ( MUST BE DRAGGED TO THE TOP OF NAT RULES! )

/ip firewall nat
add chain=srcnat dst-address=192.168.0.2 src-address=192.168.0.1
add chain=srcnat dst-address=192.168.0.6 src-address=192.168.0.5
add chain=srcnat dst-address=192.168.0.10 src-address=192.168.0.9
add chain=srcnat dst-address=192.168.0.14 src-address=192.168.0.13

IPSEC to Branches

/ip ipsec peer
add address=1.1.1.1 comment=”To Branch” enc-algorithm=aes-128 nat-traversal=no secret=
/ip ipsec policy
add comment=”To Branch” dst-address=192.168.0.2/32 sa-dst-address=1.1.1.1 sa-src-address=2.2.2.2 src-address=192.168.0.1/32 tunnel=yes
/ip ipsec peer

Set hostname

/system identity
set name=HeadOffice

Branch Office Configuration

GRE Tunnel

/interface gre
add comment=”To Headoffice” !keepalive name=”To Headoffice” remote-address=192.168.0.9

OSPF Routing

/routing ospf area
add area-id=0.0.0.3 name=”Area 3″

/routing ospf network
add area=”Area 3″ network=192.168.0.8/30
add area=”Area 3″ network=192.168.4.0/24

static route for vpn

/ip route
add dst-address=192.168.1.0/24 gateway=192.168.0.9

NAT Bypass for IPSEC ( MUST BE DRAGGED TO THE TOP OF NAT RULES! )

/ip firewall nat
add chain=srcnat dst-address=192.168.0.9 src-address=192.168.0.10

IPSEC to Heritage

/ip ipsec peer
add address=2.2.2.2 comment=”To headoffice” enc-algorithm=aes-128 nat-traversal=no secret=

/ip ipsec policy
add comment=”To Headoffice” dst-address=192.168.0.9/32 sa-dst-address=2.2.2.2 > sa-src-address=1.1.1.1 src-address=192.168.0.10/32 tunnel=yes

ntp settings

/system
ntp client set enabled=yes > server-dns-names=0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org

Set hostname

/system identity
set name=BranchOffice

— PICKS —

Runs Linux

British Maritime Museum RUNS LINUX

https://bit.ly/2kBOgDc

Desktop App Pick

Invite friends to SSH into your laptop using their Github handle

Wouldn’t it be great to allow a fellow developer to quickly and securely SSH into
your laptop when you’re in the middle of a debugging session even if you are on two
separate networks behind NAT?

A few months ago we released a free tool, Teleconsole, we built so we
could do exactly that. We are a distributed team, with bare metal servers sitting in our San Francisco office, several AWS and Azure regions and a bunch of customer environments we are sometimes asked to jump into.

Distro of the Week

GeckoLinux – Linux for Detail Oriented Geckos

GeckoLinux is a Linux spin based on the openSUSE distribution, with a focus on polish and out-of-the-box usability on the desktop. It is available in Static (based on openSUSE Leap) and Rolling (based on openSUSE Tumbleweed) editions.


— NEWS —

Five States Are Considering Bills to Legalize the ‘Right to Repair’ Electronics

_The legislation is modeled on the _Motor Vehicle Owners’ Right to Repair Act a law passed in Massachusetts in 2012. T_hat law effectively became national legislation, because auto manufacturers feared having to deal with the intricacies of 50 different state laws on the issue. The hope is that at least one electronics right to repair law will pass this year, similarly opening the floodgates for consumers and repair companies around the country.

_

Kicking Off Budgie 11

At this moment in time, the core remaining reason for Budgie even “working” on the GNOME stack, is that it expends
an awful lot of effort pretending to be GNOME Shell

Wine 2.0 is out, ready to disappoint you once again

Wine 2.0 is out, which is a huge milestone for the project. It has more support for more software, includes a lot of graphics speedups, and even supports retina displays on Mac. The list of compatible software is indeed impressive — the latest and greatest apps are rarely supported, but many relatively recent “classics” like Left 4 Dead, Fallout 3, and Office 2013 are supposedly operational.

Simplehelp Delivers on Commitment to Linux

The real test of any software is not in its function but in how well the company stands behind the product. Well, this week that test happened. Simplehelp made an update that made the client totally unusable under Linux. Any key you pressed would repeat constantly and right mouse clicks would not work at all. I tweeted them. They responded again almost immediately and asked for specific distributions they could test. I gave them the distributions and the next tweet I received was them telling me the problem was fixed.

Feedback:

Chris Asks

  • Very high capacity storage, that’s protected from vibration and movement?
Mail Bag
  • Name: Chris B
  • Subject: Arch v LTS

  • Message:

Hey guys! Love the show, and had a question that I was wondering if I could get an opinion on from the two foremost Linux experts. I’m currently an Arch user, but I’m troubled by your recent stories of Arch breaking at a crucial time. I am considering a switch back to Xubuntu 16.04 when my new x260 (thanks Noah!) arrives, because I’ve noticed that the Arch system I have created now is very similar to a base install of Xubuntu. I enjoy the rolling release/bleeding edge nature of Arch (especially Pragha in the default repos and the newest version of Firejail), but wonder if Xubuntu would be more “bulletproof” (In keeping with your newest of discussions) and if Arch is worth the trouble if it will essentially be used to create Xubuntu. Thank you, love the show, and keep up the great work!


  • Name: Rick F
  • Subject: Bullet Proof Linux

  • Message:

Arch Linux proper with the linux-lts kernel, nvidia-lts driver if using Nvidia, and a Desktop Environment that is NOT Gnome or Plasma.

The only issues I have had with Arch Linux have been tied to the graphics driver, display manager, and desktop environment.

I love Gnome and Plasma, however both are being updated too often to be considered bullet proof. Use something boring like XFCE or MATE if you want bulletproof. By default XFCE and MATE look pretty boring, but they can be tweaked to look amazing. Check out reddit.com/r/unixporn

Catch the show LIVE SUNDAY:

— CHRIS’ STASH —

Chris’s Twitter account has changed, you’ll need to follow!

Chris Fisher (@ChrisLAS) | Twitter

Hang in our chat room:

irc.geekshed.net #jupiterbroadcasting

— NOAH’S STASH —

Noah’s Day Job

Altispeed Technologies

Contact Noah

noah [at] jupiterbroadcasting.com

Find us on Twitter

The post Noah's IPSEC Adventure | LAS 454 first appeared on Jupiter Broadcasting.

]]>
Looking At Loki | LAS 434 https://original.jupiterbroadcasting.net/102976/looking-at-loki-las-434/ Sun, 11 Sep 2016 19:59:36 +0000 https://original.jupiterbroadcasting.net/?p=102976 RSS Feeds: HD Video Feed | Large Video Feed | Mobile Video Feed | MP3 Audio Feed | Ogg Audio Feed | iTunes Feed | Torrent Feed Become a supporter on Patreon: — Show Notes: — Brought to you by: Linux Academy elementary OS Loki Review Loki 0.4 Stable Release! Loki is the newest version […]

The post Looking At Loki | LAS 434 first appeared on Jupiter Broadcasting.

]]>
RSS Feeds:

HD Video Feed | Large Video Feed | Mobile Video Feed | MP3 Audio Feed | Ogg Audio Feed | iTunes Feed | Torrent Feed

Become a supporter on Patreon:

Patreon

— Show Notes: —


System76

Brought to you by: Linux Academy

elementary OS Loki Review

Loki 0.4 Stable Release!

Loki is the newest version of elementary OS, a design-oriented and open source Linux-based operating system for desktops and laptops. It succeeds Freya which was released in April of 2015.

elementary OS Loki is set to launch this week. Jack Wallen chatted with UX Architect Cassidy James Blaede about one of the most elegant Linux desktop distributions to date.

— PICKS —

Runs Linux

Desktop App Pick

Teleconsole: Command line tool to share your UNIX terminal and forward local TCP ports to people you trust.

Command line tool to share your UNIX terminal and forward local TCP ports to people you trust.

Spotlight

OpenSprinkler

Keeping your lawn and flowers beautiful doesn’t have to be stressful. OpenSprinkler unchains you from your sprinkler or irrigation control box, enabling you to program, run, or stop zones at any time from anywhere.

New Linux Show: User Error


— NEWS —

Solus Project Outs Budgie Desktop 10.2.7 with Applet Improvements, OSD Support

We’re thrilled to announce the release of Budgie 10.2.7, the last release in our 10.2 series that aims to resolve a multitude of issues as well as land some user experience improvements.

Solus MATE Edition Coming Soon, but You Can Install the MATE Desktop Right Now

“Our MATE desktop is almost completely packaged barring some minor items, and the default configuration is closing on completion, by way of mate-desktop-branding. The remaining items include setting the default panel layout and selecting a keyboard-driven menu applet, as well as fleshing out the selection of software in the default MATE ISO,” says Joshua Strobl.

Hacker Duo Selling GovRAT 2.0 Malware Used for Targeting US Government

Hackers have infected several US military and other government agencies with a stealthy malware called GovRAT, created specifically for spying on high-value targets.

World eats its 10 millionth Raspberry Pi

The Starter Kit is described as “an unashamedly premium product” and is priced at ÂŁ99.

It contains:

  • A Raspberry Pi 3 Model B
  • An 8GB NOOBS SD card
  • An official case
  • An official 2.5A multi-region power supply
  • An official 1m HDMI cable
  • An optical mouse and a keyboard with high-quality scissor-switch action
  • A copy of Adventures in Raspberry Pi Foundation Edition

Mail Bag

Goran J Writes

Subject: HiDPI Support in Linux
Message: Hi Chris and Noah…and Rikai

Today I bought a brand new 28” Samsung UHD monitor so I could enjoy its glorious 4K resolution in my Linux Mint desktop. When I turned on the monitor I was caught by surprise. The image was beautiful and everything was super sharp….and super super tiny at the same time. Searching through the Linux Mint and the nVidia settings I could not find HiDPI option so I can scale my desktop and have a more enjoyable environment. Internet search came back with results that HiDPI in Linux is still not a standard feature. With the amount of 4K display on the market I wonder why. Is there any other Linux Distro that offers HiDPI scaling or I am out of options?

Thanks!
Goran J

Dave M Writes

Subject: Contact other listeners
Message: Hi Guys/Gals!

I often hear Chris mention anecdotes of listeners getting hired into Linux jobs, and I’d like to hire some of them. 🙂

Since there’s no official forum aside from Reddit, and I’m not keen on the idea of posting job listings on Reddit, what would you suggest as a way for me to reach out to JB listeners in the New England area (or willing to move here) that might be looking for a Linux-centric tech job?

Keep up the good work!

Thanks,
Dave M

Call Box

Catch the show LIVE SUNDAY:

— CHRIS’ STASH —

Chris’s Twitter account has changed, you’ll need to follow!

Chris Fisher (@ChrisLAS) | Twitter

Hang in our chat room:

irc.geekshed.net #jupiterbroadcasting

— NOAH’S STASH —

Noah’s Day Job

Altispeed Technologies

Contact Noah

noah [at] jupiterbroadcasting.com

Find us on Google+

Find us on Twitter

Follow us on Facebook

The post Looking At Loki | LAS 434 first appeared on Jupiter Broadcasting.

]]>