timeline – Jupiter Broadcasting https://www.jupiterbroadcasting.com Open Source Entertainment, on Demand. Mon, 11 Aug 2014 22:15:09 +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 timeline – Jupiter Broadcasting https://www.jupiterbroadcasting.com 32 32 Contrarian Contracting | CR 114 https://original.jupiterbroadcasting.net/64302/contrarian-contracting-cr-114/ Mon, 11 Aug 2014 14:11:58 +0000 https://original.jupiterbroadcasting.net/?p=64302 Mike and Chris share their perspective on successfully cultivating a contact development business, and from their experience, the biggest gotchas that hurt the most. Plus hosting on your own vs shared services, a little Dart love, and the Linux user who bought a Mac. Thanks to: Direct Download: MP3 Audio | OGG Audio | Video […]

The post Contrarian Contracting | CR 114 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Mike and Chris share their perspective on successfully cultivating a contact development business, and from their experience, the biggest gotchas that hurt the most.

Plus hosting on your own vs shared services, a little Dart love, and the Linux user who bought a Mac.

Thanks to:


Linux Academy


DigitalOcean

Direct Download:

MP3 Audio | OGG Audio | Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | Video Feed | Torrent Feed | iTunes Audio | iTunes Video

Become a supporter on Patreon:

Foo

— Show Notes: —

Feedback / Follow Up:

Dev Hoopla:

The post Contrarian Contracting | CR 114 first appeared on Jupiter Broadcasting.

]]>
ownCloud 7 Interview | LAS 324 https://original.jupiterbroadcasting.net/63592/owncloud-7-interview-las-324/ Sun, 03 Aug 2014 15:37:55 +0000 https://original.jupiterbroadcasting.net/?p=63592 The founder of ownCloud joins us to discuss their latest release, future plans and challenges. And we’ll ask a batch of the tough questions you sent in. Then we take a look at CRUX, a legendary Linux distribution with an amazing history. Plus an app pick that will instantly tickle your retro bone, a cautious […]

The post ownCloud 7 Interview | LAS 324 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

The founder of ownCloud joins us to discuss their latest release, future plans and challenges. And we’ll ask a batch of the tough questions you sent in.

Then we take a look at CRUX, a legendary Linux distribution with an amazing history. Plus an app pick that will instantly tickle your retro bone, a cautious tale…

AND SO MUCH MORE!

All this week on, The Linux Action Show!

Thanks to:


DigitalOcean


Ting

Download:

HD Video | Mobile Video | WebM Torrent | MP3 Audio | Ogg Audio | YouTube | HD Torrent

RSS Feeds:

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

Become a supporter on Patreon:

Foo

— Show Notes: —

CRUX Linux Review:


System76

Brought to you by: System76

About: Crux

CRUX is a lightweight Linux distribution for the x86-64 architecture targeted at experienced Linux users. The primary focus of this distribution is keep it simple, which is reflected in a straightforward tar.gz-based package system, BSD-style initscripts, and a relatively small collection of trimmed packages. The secondary focus is utilization of new Linux features and recent tools and libraries. CRUX also has a ports system which makes it easy to install and upgrade applications.

In short, CRUX might suit you very well if you are:

  • A somewhat experienced Linux user who wants a clean and solid Linux distribution as the foundation of your installation.
  • A person who prefers editing configuration files with an editor to using a GUI.
  • Someone who does not hesitate to download and compile programs from the source.

History of CRUX

  • Started May 2000
  • No public releases made during this time
  • A strong community by 2002, and was responsible for working together and adding important package management features to the distro.
  • CRUX was built from scratch and has never been based on any other Linux distribution.

  • Tracked by Distrowatch since 2002-01-14

CRUX vs Arch

  • Before creating Arch, Judd Vinet admired and used CRUX; a minimalist distribution created by Per Lidén. Originally inspired by ideas in common with CRUX and BSD, Arch was built from scratch, and pacman was then coded in C.
  • Arch and CRUX share some guiding principles: for instance, both are architecture-optimized, minimalist and K.I.S.S.-oriented.
  • Both ship with ports-like systems, and, like *BSD, both provide a minimal base environment to build upon.
  • Arch features pacman, which handles binary system package management and works seamlessly with the Arch Build System. CRUX uses a community contributed system called prt-get, which, in combination with its own ports system, handles dependency resolution, but builds all packages from source (though the CRUX base installation is binary).
  • Arch officially supports x86_64 and i686 only, whereas CRUX officially offers only x86_64.
  • Arch uses a rolling-release system and features a large array of binary package repositories as well as the Arch User Repository. CRUX provides a more slimmed-down officially supported ports system in addition to a comparatively modest community repository.

CRUX 3.1 Released July 17th 2014

Toolchain updates

CRUX 3.1 comes with a multilib toolchain which includes glibc 2.19.0, gcc 4.8.3 and binutils 2.24

Kernel

Linux 3.12.24

Xorg

CRUX 3.1 ships with Xorg 7.7 and xorg-server 1.15.1.

CRUX Install:

  • Very Manual.

Packages in CRUX

The package system (pkgutils) is made with simplicity in mind, where all packages are plain tar.gz files (i.e. without any kind of meta data).

When a package is installed using pkgadd a new record is added to the package database (stored in /var/lib/pkg/db). The basic package system does not have any kind of dependency checking, thus it will not warn you if you install a package that requires other packages to be installed. The included prt-get tool, however, does support dependencies.

Since the package file itself does not contain any meta data. Instead, the package manager uses the package filename to determine the package name and version.
Thus, when installing a package file named bash#2.05-1.pkg.tar.gz, the package manager will interpret this as a package named bash at version 2.05-1.

If pkgadd is unable to interpret the filename (e.g. # is missing or the filename does not end with .pkg.tar.gz) an error message will be printed and pkgadd will abort without installing the package.

Package management frontend: prt-get

To address the different requirements towards package management in CRUX, a number of users started discussion about an advanced package management frontend to pkgutils, with dependency handling and support for large install transactions. The result of this community effort is prt-get, a tool which provides a number of features on top of pkgutils while keeping pkgutils’ original character and power. Its main features are

  • Dependency handling
  • Build logging
  • Powerful search and query functionality

Nowadays prt-get is an official project and tool of the CRUX project.

The Ports System

The term Ports System refers to a remote repository containing ports and a client program capable of downloading ports from that repository. CRUX users use the ports(8) utility to download ports from the repository and place them in /usr/ports/. The ports utility uses rsync(1) or httpup(1) to do the actual downloading/synchronization.

A port is a directory containing the files needed for building a package using pkgmk. This means that this directory at least has the files Pkgfile (which is the package build description) and .footprint (which is used for regression testing and contains a list of files this package is expected to contain once it is built). Further, a port directory can contain patches and/or other files needed for building the package. It is important to understand that the actual source code for the package is not necessarily present in port directory. Instead the Pkgfile contains an URL which points to a location where the source can be downloaded.

Have a Question about CRUX? Ask one of the Devs!


— PICKS —

Runs Linux

The Future of Desktop Computing? – Computerphile – YouTube

Tablets are taking over from desktop computing but what if we merge the two? This prototype demonstrates something new, that builds upon something centuries old – working with paper on your desk.

Desktop App Pick

cool-old-term

Developed by Swordfish’s Labs, cool-old-term is a terminal emulator which tries to mimic the look and feel of the old cathode tube screens. It has been designed to be eye-candy, customizable, and reasonably lightweight.

Weekly Spotlight

Toxic

Toxic is a Tox-based instant messaging client which formerly resided in the Tox core repository, and is now available as a standalone application.

Toxic Screenshot.

qTox

Powerful Tox client that tries to follow the Tox UI mockup while running on all major systems.
This GUI uses code from @nurupo’tos ProjectTox-Qt-GUI, in particular the “Core” Toxcore wrapper.
However, it is not a fork.

Features
  • One to one chat with friends
  • Group chats
  • File transfers, with previewing of images
  • Audio calls
  • Video calls (alpha)
  • Tox DNS
  • Translations in various languages

Missed any of our OSCON 2014 Interviews? Here’s each interview broken out and added to an OSCON Playlist


— NEWS —

OpenSUSE Factory Turns Into Rolling Release Distribution

OpenSUSE Factory will still serve where openSUSE development takes place, but it’s also going to aim for being a distribution on its own as a “tested and stable fresh-daily bleeding-edge distribution.”

Fedora security team is announced

== What are we doing? ==

The Security Team’s mission is to assist packagers in closing security vulnerabilities. Once alerted to a
vulnerability on a package, the security team can help work with upstream to obtain a patch or a new release
of a package. Once we have a patch or a new release we attach it to the vulnerability bug and work with
packagers to get the fix pushed.

== How bad is the problem now? ==

As of a few days ago we had 566 open vulnerability tickets that cover both Fedora and EPEL. The breakdown of
those bugs by severity looks like this:

Fedora 21 Has Been Delayed By Three Weeks

At Wednesday’s Fedora Engineering and Steering Committee it was agreed upon to push back the entire release process by three weeks. This three weeks is to give additional time to finish outstanding work prior to the changes freeze and for also then working around Fedora’s “Flock” contributor conference.

Fedora 21 will not be officially released now until at least 4 November while the alpha release is at 26 August, beta release on 30 September, and the final change deadline on 21 October. The updated Fedora 21 schedule can be found via this Fedora Wiki page.

OMG! Fedora is just getting a security team? Does this mean Fedora has been insecure this entire time?!?

Umm, no, it doesn’t mean that Fedora has been insecure this entire time. In all actuality Fedora is in pretty good shape overall. There is always room for improvement and so we’re organizing a team to help facilitate that improvement.

XBMC Is Getting a New Name – Introducing Kodi 14

We are excited to announce that the media center software we’ve all loved for so many years will have a new name, starting with version 14. Instead of XBMC 14, we’d like to introduce you to Kodi 14.

ownCloud 7 Released With more Sharing And Control | ownCloud.org

OwnCLoud7

ownCloud 7 Community Edition has significant feature improvements for users, administrators and developers.

Questions for Frank:
  • What brought about Server-to-Server syncing, and how close to real time is that syncing?

  • Sleepee asks: Any plans for better auditing on who shared filed. He’s working in an Enterprise, and the management would like some records.

  • Seal20 asks: I could not find anyway to replace the last closed and evil tool: evernote. I hate it but I couldn’t switch to any other free alternative. Do you plan do include an evernote alternative somewhere down the road?

  • Seal20 also asks: What about an “owncloud phone” you could rip off an android os from all google or even better start from a firefox os and include all owncloud related apps: cal/carddav sync, owncloud news, sync apps, etc! I and i am sure others will surely pay a premium for this!

  • pierre4l asks: I wonder whether the focus of OwnCloud is going to be home users wanting to set up their personal cloud servers, or whether it is veering more to the enterprise deployments. Or is it trying to be a solution for all?

  • OwnCloud apps seems to be really growing. Where do you see OwnCloud apps going? Even casual games on apps.ownCloud.com

  • autodidactos: I know there are two email client apps available (roundcube and rainloop) but neither seem to be as integrated as an official client would be. Are there any plans for an official OwnCloud email client?

— FEEDBACK —

— CHRIS’ STASH —

Hang in our chat room:

irc.geekshed.net #jupiterbroadcasting

— MATT’S STASH —

Find us on Google+

Find us on Twitter

Follow the network on Facebook

Catch the show LIVE Sunday 10am Pacific / 1pm Eastern / 6pm UTC:

The post ownCloud 7 Interview | LAS 324 first appeared on Jupiter Broadcasting.

]]>
New Google+ Features | FauxShow 140 https://original.jupiterbroadcasting.net/37356/new-google-features-fauxshow-140/ Thu, 16 May 2013 21:28:36 +0000 https://original.jupiterbroadcasting.net/?p=37356 Angela and Chris go over some of the latest G+ changes from the Google I/O and show of a few of their favorite new features.

The post New Google+ Features | FauxShow 140 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Angela and Chris go over some of the latest G+ changes from the Google I/O and show of a few of their favorite new features. Plus a few of the changes that took us by surprise, and a big mail sack!

Direct Download:

HD Download | Mobile Download | MP3 Download | YouTube

RSS Feeds:

HD Video Feed | Mobile Video Feed | MP3 Audio Feed | Torrent Feed | iTunes Feeds

   

Show Notes:

The redesign doesn’t just feature a new layout for your Google+ stream — the company has also worked to turn the website into more of a proper app instead of a website.

The highlight of the new features may be Google+’s new photo editing and uploading tools. One of them will automatically sift through a bunch of photos taken during a vacation, for instance, and create a themed album to share with friends. Using the company’s technology, Google+ will choose the best pictures based on a variety of factors, including whether they feature people or important landmarks.

Google announced today it jumped on the online music streaming bandwagon with a new service through its Google Play – its Android store for apps, music, movies and other multimedia.

Mailsack:

Mike writes: How do you run freenas from cd rom. Not install but run freenas from or on cd rom

Jeff writes:

While watching your last episode of LAS you guys didn’t think too much about Ubuntu Phone spins! I completely disagree and think that there will/should be tons of spins! You forgot to think about custom Android roms. Every phone has more roms than we can keep track of. As a user, we don’t want to be locked into a venders “way”. We want to break out into different ways, new interfaces, faster systems, and more user customization. I for one am only excited about what spins may come because I am honestly not a fan of Canonical, and fear that they will take a mac approach with there Ubuntu phone OS.

Love the show, keep on rocken!

Andrew writes:

I would like to complain, about your Ting advertising. You keep telling us about how fantastic Ting is and how you can mix and match your voice and data components and only pay for what you use. I continually hear it throughout your shows and it makes me look at my phone, and cry! Because Ting is not in Australia. And without Ting in Australia, I cannot sign up to a Ting plan. And without a Ting plan I am stuck paying for hundreds of minutes of voice I will never use 🙁
The next time you are talking to your guy at Ting, please tell him Ting needs to start doing business in Australia.

Cal writes:

This is just a general comment…. I don’t support this “Unfiltered” or any show by JB, individually. But I do go out of my way to support JB as a whole because I take something beneficial from each show I watch. My concern is, in supporting one show I would be neglecting another which I gain benefit from. Please do not view your podcasts as simple podcasts, they are the best I have seen on the internet and truly are a culmination of a network. Specific to your case, the “unflitered” news channel, if it is to remain only your bias and not that of commercial interest, then please keep it part of an important piece of the network. Unaffected by anything else.
To be noted – I do not share yor views on a lot but do on some – still nice to here current event with out bs….right?

Pradeep:

I have been a big fan of your Linux Action Show & Coder Radio for the past one year. I am an indepent game developer and I have just released my game Zenania on Google Play for Androids. All the tools used to make it were open source/ free software like gimp…etc. After listening to your shows about the awesome tech in open source, I decided to try open tools for game developement and now I have release my very first indepent game. Thank you for inspiring me take the effort. If it was not for your show I would not have tried those tools (open source)…. Cheers.

Here is a link to my game.

Find FauxShow!

  • LIVE: https://jblive.tv – 8pm Pacifc – 11pm Eastern – 3am UTC
  • Facebook: https://www.facebook.com/thefauxshow
  • Twitter: https://www.twitter.com/angerz
  • G+: https://www.gplus.to/fauxshow
  • Subscribe to Jupiter Signal: https://www.bit.ly/jupitersignal
  • Jupiter Radio: https://jblive.info
  • Affiliates Firefox Extension: https://addons.mozilla.org/en-US/firefox/addon/jupiterbroadcasting/
  • Affiliates Chrome Extension: https://chrome.google.com/webstore/detail/bjekemhblnilimncanbehhjijdpjgimj
  • Donations: https://original.jupiterbroadcasting.net/donate
  • Shows & Shownotes: https://original.jupiterbroadcasting.net/show/fauxshow/

The post New Google+ Features | FauxShow 140 first appeared on Jupiter Broadcasting.

]]>
Survival on Mars | J@N | 4.6.11 https://original.jupiterbroadcasting.net/6862/survival-on-mars-jn-40611/ Wed, 06 Apr 2011 21:29:08 +0000 https://original.jupiterbroadcasting.net/?p=6862 If we made it to Mars, what challenges would we face? What epic efforts must we undertake to survive the “Red Planet”? We answer those questions and more!

The post Survival on Mars | J@N | 4.6.11 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Our journey has taken us from the science of space propulsion, to the practical issues of a manned space flight to Mars. If we made it to Mars, what challenges would we face? What epic efforts must we undertake to survive the “Red Planet”?

Plus we share a little insight into the efforts underway here on earth to prepare us for our future missions on Mars!

Thanks to:

FreshBooks.com for their sponsorship of tonight’s show!

Show Feeds:

[ad#shownotes]

Show Notes:

Curiosity Rover:
-Release today: NASA Mars Science Laboratory + Curiosity Rover: first look (photo gallery)
-See the construction live on UStream! @ UStream @ NASA

Mars Facts:
-Length of Day →  24:29:35.244   California Watchmaker made Mars Time Pieces
-Length of Year → 686.971 days [ 1.88 Earth Years ]
-North : North Star isn’t in Ursa Major / Big Dipper → ~ ½ between Deneb and Alpha Centari
-Gravity :surface gravity on Mars is 38% of that on Earth. It is not known if this is enough to prevent the health problems associated with weightlessness.
-Mean Temp → mean surface temperature is -63°C / -81°F
-Atmospheric pressure → ~6 mbar
-6 mbar is 9.7% human of min survivability of 61.8 mbar
-Earth → Average Sea level = 1013 mbar :: Mt Everest ~= 300 mbar
-Solar Winds → very weak magnetosphere, so it deflects solar winds poorly
-Radiation Levels → in orbit above Mars are 2.5 times higher than at the International Space Station.
-A three year exposure to such levels would be close to the safety limits currently adopted by NASA surface would be somewhat lower and might vary significantly at different locations depending on altitude and local magnetic fields.
-Communication → Radio waves ARE light waves one-way communication delay ranges from about 3 minutes at closest approach to 22 minutes at the largest possible superior conjunction.

The Mission:
How long are we staying?
-Some missions plans call for a measly 2-weeks on Mars
-Most suggest 18-22 months
-Mars to Stay? – https://en.wikipedia.org/wiki/Mars_to_Stay
-Most missions are a variation on the Mars Direct approach
-Mars Direct : Mars Direct Animation walk through

[ad#shownotes]

Possible Daily Activities:
-Crew of 4/6 – working in shifts
-Specialization / All-Around Knowledge
-Exercise keeping fit, working against bone/muscle loss in 38% Earth Gravity
-Greenhouse – set up / maintenance /Greenhouses for Mars Artist Rendition Greenhouse Artist Rendition Greenhouse
-Systems Checks – HAB, Return Vehicle, Rover : checking systems, maintenance
-Report – Science, Engineering, Medical, …
-Communications – download / upload ; Mission
-Medical Testing – physical / mental
-Physical → hooks up to exercise equipment, medical personnel
-Mental → Programming to help
-Science Experiments

Additional Info :
Mars Society – Station Goals
WIKI – Light
In-Situ Resource Utilization – “Living off the land”
RWGS – reverse water gas shift reaction
NASA – Improvements and Modeling of the RWGS Process
PDF – NASA Design Reference Architecture 5.0
NASA – A Crewed Mission to Mars…
WIKI – Manned mission to Mars
WIKI – Colonization of Mars
WIKI – Terraforming of Mars

Download:

The post Survival on Mars | J@N | 4.6.11 first appeared on Jupiter Broadcasting.

]]>