Sponsored Content
Homework and Emergencies Emergency UNIX and Linux Support Are these Raspberry Pi kits really complete? Post 303026930 by Don Cragun on Wednesday 5th of December 2018 09:24:15 AM
Old 12-05-2018
Are these Raspberry Pi kits really complete?

This is a test to see if the Emergency and UNIX and Linux Support forum is still working...

I see that Amazon has a deal on Raspberry Pis today (CanaKit Raspberry Pi 3 B+ (B Plus) Starter Kit (32 GB EVO+ Edition, Premium Black Case) and CanaKit Raspberry Pi 3 Complete Starter Kit - 32 GB Edition).

Are these really complete, or do I need to add other stuff (like a keyboard, display, or external storage of some kind) to be able to write and run recent Linux bash shell scripts on these kits?
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

BASH complete-filename & menu-complete together

Hi, Does anyone know how to make BASH provide a list of possible completions on the first tab, and then start cycling through the possibilites on the next tab? Right now this is what I have in my .bashrc: bind "set show-all-if-ambiguous on" bind \\C-o:menu-complete This allows... (0 Replies)
Discussion started by: Mithu
0 Replies

2. What is on Your Mind?

Possible Arcade Cabinet Application of the Raspberry Pi

Hi guys, My name is Ryan. I'm from Providence, Rhode Island. A friend and I are working on a homemade video game cabinet design in the style of classic arcade games from the late seventies to nineties. We're designing a system that allows people to play these original games on their original... (0 Replies)
Discussion started by: kabungalee
0 Replies

3. What is on Your Mind?

Raspberry Pi anyone?

Anyone order or get the new Rasberry Pi? I'm still waiting. Even though it's a fun project, I think these will turn out to be toys for people who already have PC's, and a boon to those who do not. But that is not stopping me. If my wallet holds out, maybe I can build a Raspberry Pi beowulf... (1 Reply)
Discussion started by: jim mcnamara
1 Replies

4. What is on Your Mind?

Raspberry PI

The small red box to the left of TV is the Raspberry PI. Successfully installed and running Raspbian Wheezy. I learnt about Raspberry PI from Neo here on unix.com. Thanks to you Neo :b: (6 Replies)
Discussion started by: balajesuri
6 Replies

5. AIX

3151 Emulation on Raspberry pi

Anybody done it? We use a legacy application that requires 3151 emulation. I am experimenting with a raspberry Pi running Debian. Wondering if nothing else, somebody might know where I can get some source code for a basic emulator? (1 Reply)
Discussion started by: jeveretts
1 Replies

6. Debian

How to play avi files Raspberry Pi?

Raspberry Pi B 2014-01-07 Raspbian fully up to date. Installed and configured motion for surveillance. It works just fine and creates .avi files and .jpeg. Installed Mplayer trying to run it from desktop was not successful. I did try to do a command line by executing sudo mplayer... (6 Replies)
Discussion started by: oldcity
6 Replies

7. News, Links, Events and Announcements

An interesting Raspberry Pi add-on...

Hi all... An interesting idea for Raspberry Pi... Raspberry Pi goes Hi-Fi with audio valve amp | Electronics Weekly Enjoy... (1 Reply)
Discussion started by: wisecracker
1 Replies

8. UNIX for Beginners Questions & Answers

Project with Raspberry Pi

i have been given a raspberry Pi with some applications i am told run in Unix. I do not know much (close to nothing about Unix) that's why I'm here. I need someone to remote view (team viewer) into my machine and try and show me how to get this application running. If there is success there... (1 Reply)
Discussion started by: supaflygy
1 Replies

9. Shell Programming and Scripting

First bash script for Raspberry pi

Hi, I'm trying to get the configuration just as I'd like. But I can't get it to work? I try to read if: xset s off xset -dpms xset s noblank Is already in the .xinitrc file.... but it doesn't seem to work. I need it to check if it is already in the file otherwise it should echo that it's... (2 Replies)
Discussion started by: melbarius
2 Replies
Module::Starter::Plugin::CGIApp(3pm)			User Contributed Perl Documentation		      Module::Starter::Plugin::CGIApp(3pm)

NAME
Module::Starter::Plugin::CGIApp - template based module starter for CGI apps. SYNOPSIS
use Module::Starter qw( Module::Starter::Plugin::CGIApp ); Module::Starter->create_distro(%args); ABSTRACT
This is a plugin for Module::Starter that builds you a skeleton CGI::Application module with all the extra files needed to package it for CPAN. You can customize the output using HTML::Template. VERSION
This document describes version 0.41 DESCRIPTION
This module subclasses Module::Starter::Simple and includes functionality similar to Module::Starter::Plugin::Template. This document only describes the methods which are overriden from those modules or are new. Only developers looking to extend this module need to read this. If you just want to use Module::Starter::Plugin::CGIApp, read the docs for cgiapp-starter or titanium-starter instead. METHODS
new ( %args ) This method calls the "new" supermethod from Module::Starter::Plugin::Simple and then initializes the template store. (See "templates".) create_distro ( %args ) This method works as advertised in Module::Starter. create_LICENSE( ) This method creates a "LICENSE" file in the distribution's directory which can hold the distribution's license terms. create_MANIFEST_SKIP( ) This method creates a "MANIFEST.SKIP" file in the distribution's directory so that unneeded files can be skipped from inclusion in the distribution. create_modules( @modules ) This method will create a starter module file for each module named in @modules. It is only subclassed from Module::Starter::Simple here so we can change the rtname tmpl_var to be the distro name instead of the module name. create_perlcriticrc( ) This method creates a "perlcriticrc" in the distribution's author test directory so that the behavior of "perl-critic.t" can be modified. create_server_pl( ) This method creates "server.pl" in the distribution's root directory. create_t( @modules ) This method creates a bunch of *.t files. @modules is a list of all modules in the distribution. create_tmpl( ) This method takes all the template files ending in .html (representing HTML::Template's and installs them into a directory under the distro tree. For instance if the distro was called "Foo-Bar", the templates would be installed in "lib/Foo/Bar/templates". Note the files will just be copied over not rendered. create_xt( @modules ) This method creates a bunch of *.t files for author tests. @modules is a list of all modules in the distribution. render( $template, \%options ) This method is given an HTML::Template and options and returns the resulting document. Data in the "Module::Starter" object which represents a reference to an array @foo is transformed into an array of hashes with one key called $foo_item in order to make it usable in an HTML::Template "TMPL_LOOP". For example: $data = ['a'. 'b', 'c']; would become: $data = [ { data_item => 'a' }, { data_item => 'b' }, { data_item => 'c' }, ]; so that in the template you could say: <tmpl_loop data> <tmpl_var data_item> </tmpl_loop> templates ( ) This method reads in the template files and populates the object's templates attribute. The module template directory is found by checking the "MODULE_TEMPLATE_DIR" environment variable and then the config option "template_dir". Build_PL_guts($main_module, $main_pm_file) This method is called by create_Build_PL and returns text used to populate Build.PL when the builder is Module::Build; $main_pm_file is the filename of the distribution's main module, $main_module. Changes_guts Implements the creation of a "Changes" file. LICENSE_guts Implements the creation of a "LICENSE" file. Makefile_PL_guts($main_module, $main_pm_file) This method is called by create_Makefile_PL and returns text used to populate Makefile.PL when the builder is ExtUtils::MakeMaker; $main_pm_file is the filename of the distribution's main module, $main_module. MANIFEST_SKIP_guts Implements the creation of a "MANIFEST.SKIP" file. MI_Makefile_PL_guts($main_module, $main_pm_file) This method is called by create_MI_Makefile_PL and returns text used to populate Makefile.PL when the builder is Module::Install; $main_pm_file is the filename of the distribution's main module, $main_module. module_guts($module, $rtname) Implements the creation of a "README" file. README_guts($build_instructions) Implements the creation of a "README" file. perlcriticrc_guts Implements the creation of a "perlcriticrc" file. server_pl_guts Implements the creation of a "server.pl" file. t_guts(@modules) Implements the creation of test files. @modules is a list of all the modules in the distribution. tmpl_guts Implements the creation of template files. xt_guts(@modules) Implements the creation of test files for author tests. @modules is a list of all the modules in the distribution. BUGS
Please report any bugs or feature requests to "bug-module-starter-plugin-cgiapp at rt.cpan.org", or through the web interface at rt.cpan.org <http://rt.cpan.org>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. AUTHOR
Jaldhar H. Vyas, <jaldhar at braincells.com> COPYRIGHT
Copyright (C) 2012, Consolidated Braincells Inc. All Rights Reserved. This distribution is free software; you can redistribute it and/or modify it under the terms of either: a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the Artistic License version 1.0 or a later version. The full text of the license can be found in the LICENSE file included with this distribution. SEE ALSO
cgiapp-starter, titanium-starter, Module::Starter, Module::Starter::Simple, Module::Starter::Plugin::Template. CGI::Application, Titanium, HTML::Template perl v5.14.2 2012-05-26 Module::Starter::Plugin::CGIApp(3pm)
All times are GMT -4. The time now is 03:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy