Bookmarks for 8 set 2014 through 9 set 2014

These are my links for 8 set 2014 through 9 set 2014:

  • How to write udev rules – Since the adoption of Kernel 2.6, Linux has used the udev system to handle devices such as USB connected peripherals. If you want to change the behavior when you plug something into a USB port, this section is for you. As an example, we will use a USB thumb drive but these methods should translate to any device handled by udev. As a goal for this exercise we decided to create a symlink and execute a script when a specific thumb drive was loaded.
  • Persistent iSCSI LUN Device Name – jablonskis – […] I spent a bit of time figuring out how to get this achieved, so thought it is worth noting for the future reference. I will try to make this quick assuming you have knowledge about iSCSI software initiators in Linux[…]
  • al3x/sovereign – A set of Ansible playbooks to build and maintain your own private cloud: email, calendar, contacts, file sync, IRC bouncer, VPN, and more.
  • NSA-proof your e-mail in 2 hours | Sealed Abstract – You may be concerned that the NSA is reading your e-mail. Is there really anything you can do about it though? After all, you don’t really want to move off of GMail / Google Apps. And no place you would host is any better. Except, you know, hosting it yourself. The way that e-mail was originally designed to work. We’ve all just forgotten because, you know, webapps-n-stuff. It’s a lot of work, mkay, and I’m a lazy software developer.

Bookmarks for 5 set 2014 through 8 set 2014

These are my links for 5 set 2014 through 8 set 2014:

  • Mail-in-a-Box – Mail-in-a-Box turns a fresh cloud computer into a working mail server. You get contact synchronization, spam filtering, and so on. On your phone, you can use apps like K-9 Mail and CardDAV-Sync free beta to sync your email and contacts between your phone and your box.
  • ClusterLabs/hawk – A web-based GUI for managing and monitoring the Pacemaker High-Availability cluster resource manager
  • Hawk – ClusterLabs – Hawk (HA Web Konsole) is a web-based GUI for managing and monitoring Pacemaker HA clusters. It is generally intended to be run on every node in the cluster, so that you can just point your web browser at any node to access it,

Bookmarks for 1 set 2014 through 2 set 2014

These are my links for 1 set 2014 through 2 set 2014:

  • The Twelve-Factor App – In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that: Use declarative formats for setup automation, to minimize time and cost for new developers joining the project; Have a clean contract with the underlying operating system, offering maximum portability between execution environments; Are suitable for deployment on modern cloud platforms, obviating the need for servers and systems administration; Minimize divergence between development and production, enabling continuous deployment for maximum agility; And can scale up without significant changes to tooling, architecture, or development practices. The twelve-factor methodology can be applied to apps written in any programming language, and which use any combination of backing services (database, queue, memory cache, etc).
  • British Behaviour, British Etiquette | Debrett’s – Our indispensable Guide to British life and manners. From Countryside Rules, Dress Codes, Kilts, Meeting Royalty and Port Etiquette to Apologising, Introductions, Queuing, Reticence, Small Talk and Understatment. British rituals, social occasions, manners and characteristics decoded.
  • A Mailserver on Ubuntu 12.04: Postfix, Dovecot, MySQL – This long post contains a recipe for building a reasonably secure Ubuntu 12.04 mailserver in Amazon Web Services, using Postfix 2.9.1, Dovecot 2.0.19, and MySQL 5.5.22, with anti-spam packages in the form of amavisd-new 2.6.5, Clam AntiVirus 0.97.3, SpamAssassin 3.3.2, and Postgrey 1.3.4. Local users are virtual rather than being system users. Administration of users and domains is achieved through the Postfix Admin 2.3.6 web interface. Webmail is provided by Horde Groupware Webmail Edition 5.04.

Bookmarks for 28 ago 2014 from 12:10 to 13:11

These are my links for 28 ago 2014 from 12:10 to 13:11:

  • CloudInit – Community Help Wiki – cloud-init is the Ubuntu package that handles early initialization of a cloud instance. It is installed in the Ubuntu Cloud Images and also in the official Ubuntu images available on EC2. Some of the things it configures are: setting a default locale setting hostname generate ssh private keys adding ssh keys to user's .ssh/authorized_keys so they can log in setting up ephemeral mount points cloud-init's behavior can be configured via user-data. User-data can be given by the user at instance launch time. This is done via the –user-data or –user-data-file argument to ec2-run-instances
  • Tsunami UDP Protocol – Tsunami UDP Protocol: A fast user-space file transfer protocol that uses TCP control and UDP data for transfer over very high speed long distance networks (≥ 1 Gbps and even 10 GE), designed to provide more throughput than possible with TCP over the same networks. The project is based on original Indiana University 2002 Tsunami source code, but has been significantly improved and extended. As such, large portions of the program today are courtesy by Aalto University Metsähovi Radio Observatory. Includes FTP-like client and server command line applications for normal file transfers. It has additionally been extended for high rate real-time data streaming in eVLBI radio astronomy and geodesy (VSIB, PCEVN DAQ). Licensed under the original IU open source license.
  • Obama for America on AWS – Infrastructure Architecture – Obama for America on AWS – Infrastructure Architecture
  • holman/spark – sparklines for your shell

Bookmarks for 27 giu 2014 through 30 giu 2014

These are my links for 27 giu 2014 through 30 giu 2014:

  • Fritzing Fritzing – Fritzing is an open-source hardware initiative that makes electronics accessible as a creative material for anyone. We offer a software tool, a community website and services in the spirit of Processing and Arduino, fostering a creative ecosystem that allows users to document their prototypes, share them with others, teach electronics in a classroom, and layout and manufacture professional pcbs.
  • vFense – Patch Management Made Easy – vFense is an Open-Source Cross-Platform Patch Management tool. Supported Operating Systems * RedHat 5.5 + ( RedHat Clones ) * Ubuntu 12.04 + ( Ubuntu Clones ) * OS X 10.6 + * Windows XP +
  • ShellCheck – Online shell script analyzer – automatically detects problems with sh/bash scripts and commands.

Bookmarks for 18 apr 2014 through 30 apr 2014

These are my links for 18 apr 2014 through 30 apr 2014:

  • JoshData/mailinabox · GitHub – Mail-in-a-Box helps individuals take back control of their email by defining a one-click, easy-to-deploy SMTP+everything else server: a mail server in a box.
  • SSH Multi-hop Connections With Netcat Mode Proxy | Click & Find Answer ! – Since OpenSSH 5.4 there is a new feature called natcat mode, which allows you to bind STDIN and STDOUT of local SSH client to a TCP port accessible through the remote SSH server. This mode is enabled by simply calling ssh -W [HOST]:[PORT] Theoretically this should be ideal for use in the ProxyCommand setting in per-host SSH configurations, which was previously often used with the nc (netcat) command. ProxyCommand allows you to configure a machine as proxy between you local machine and the target SSH server, for example if the target SSH server is hidden behind a firewall. The problem now is, that instead of working, it throws a cryptic error message in my face: Bad packet length 1397966893.Disconnecting: Packet corrupt
  • Tyblog | SSH Kung Fu – OpenSSH is an incredible tool. Though primarily relied upon as a secure alternative to plaintext remote tools like telnet or rsh, OpenSSH (hereafter referred to as plain old ssh) has become a swiss army knife of functionality for far more than just remote logins. I rely on ssh every day for multiple purposes and feel the need to share the love for this excellent tool. What follows is a list for some of my use cases that leverage the power of ssh.
  • Baseimage-docker: A minimal Ubuntu base image modified for Docker-friendliness – YOUR DOCKER IMAGE MIGHT BE BROKEN without you knowing it Learn the right way to build your Dockerfile.
  • NetApp – Index – The following documentation is a guide on using and configuring the NetApp servers, there is also a commandline cheat sheet. I have tried to make this section as brief as possible but still cover a broad range of information regarding the NetApp product but I point you to the Official NetApp web site which contains all the documentation you will ever need.

Bookmarks for 10 dic 2013 through 19 dic 2013

These are my links for 10 dic 2013 through 19 dic 2013:

  • Private group chat and IM, business and team collaboration – HipChat – Group chat and IM built for teams. PERSISTENT CHAT ROOMS + DRAG-AND-DROP FILE SHARING + DESKTOP, MOBILE, AND WEB APPS
  • kandanapp/kandan · GitHub – What is Kandan? Kandan is a private chat service for your company or team. You can invite colleagues to share ideas and files in a persistent group chat room or rooms. Unlike HipChat or other alternatives, Kandan is completely Open Source and can be hosted internally or externally by your organization or by a third party.
  • GitSvnCrashCourse – Git SCM Wiki – Welcome to the Git crash course for SVN users! This introduces you to Git based on your current Subversion knowledge. If you want to migrate your company from SVN to Git, see the SVN migration page. If you want a list of common commands, see the Git Cheat Sheet (or the git-svn guide if you are using Git as a subversion client. Many non-SVN-specific guides are also available. This crash course is based on Pasky's unmaintained version.
  • Apache Cordova – Apache Cordova is a set of device APIs that allow a mobile app developer to access native device function such as the camera or accelerometer from JavaScript. Combined with a UI framework such as jQuery Mobile or Dojo Mobile or Sencha Touch, this allows a smartphone app to be developed with just HTML, CSS, and JavaScript.
  • Use vim at its best to edit your Puppet manifests – Linuxaria – Using this repository you’ll enable the following plugins: pathogen Makes it super easy to install plugins and runtime files in their own private directories. snipmate.vim snipMate.vim aims to be an unobtrusive, concise vim script that implements some of TextMate’s snippets features in Vim. syntastic Syntastic is a syntax checking plugin that runs files through external syntax checkers and displays any resulting errors to the user. This can be done on demand, or automatically as files are saved. If syntax errors are detected, the user is notified and is happy because they didn’t have to compile their code or execute their script to find them. tabular Sometimes, it’s useful to line up text. Naturally, it’s nicer to have the computer do this for you, since aligning things by hand quickly becomes unpleasant. vim-puppet Make vim more Puppet friendly! vim-fugitive Provides an amazingly deep Git integration for vim.

Bookmarks for 9 lug 2013 through 11 lug 2013

These are my links for 9 lug 2013 through 11 lug 2013:

  • AppArmor – Ubuntu Wiki – AppArmor is a Mandatory Access Control (MAC) system which is a kernel (LSM) enhancement to confine programs to a limited set of resources. AppArmor's security model is to bind access control attributes to programs rather than to users. AppArmor confinement is provided via profiles loaded into the kernel, typically on boot. AppArmor profiles can be in one of two modes: enforcement and complain. Profiles loaded in enforcement mode will result in enforcement of the policy defined in the profile as well as reporting policy violation attempts (either via syslog or auditd). Profiles in complain mode will not enforce policy but instead report policy violation attempts.
  • AppArmor – Documentation
  • SmoothSec – Smooth-Sec is a fully-ready IDS/IPS (Intrusion Detection/Prevention System) Linux distribution based on Debian 7 (wheezy), available for 32 and 64 bit architecture. The distribution includes the latest version of Snorby, Snort, Suricata, PulledPork and Pigsty. An easy setup process allows to deploy a complete IDS/IPS System within minutes, even for security beginners with minimal Linux experience. [ via https://delicious.com/farmando ]
  • Ninite – Install or Update Multiple Apps at Once – Install and Update All Your Programs at Once

Bookmarks for 27 giu 2013 through 3 lug 2013

These are my links for 27 giu 2013 through 3 lug 2013:

  • Miniflux – Minimalist and Open Source News Reader – Miniflux is a minimalist and open source news reader. Features: Optimized for readability Very easy to use Minimalist design Fast Efficient No social network support No advertising and user tracking Privacy No data locking, host anywhere Web based Mobile ready Secure Translated into several languages Super simple installation Open source and free software [ via http://tinyapps.org/blog/nix/201307020700_miniflux.html ]
  • Cozy, a personal cloud you can hack, host and delete – Cozy a personal cloud you can host, hack, and delete [ via http://onethingwell.org/post/54433660862/cozy ]
  • How to interpret the status of dpkg (–list)? | Programming in Linux – dpkg (debian package manager) is the package manager for Ubuntu (debian based distributions). dpkg can be used to install packages in Ubuntu. With dpkg, you can see the status of various packages like: the packages are currently installed the packages are removed the configuration files are present marked for removal Let’s explore the output of dpkg –list.
  • Jugnu Life :-): How to install Tomcat in Linux (Ubuntu) – To install Tomcat we need Java to be installed in the system. If you want to know how to install Java on Linux you can refer this earlier post on the same. We can install Java either using packages (apt , yum) or manually. This post explains how to do it manually. The main advantage of doing it manually is that all the tomcat files are in one location. The automated installation will spread the setup files across various locations. It places the Tomcat configuration files at various non standard places.

Bookmarks for 25 feb 2013 through 19 mar 2013

These are my links for 25 feb 2013 through 19 mar 2013:

  • owncloud 5.0: Unable to upload files – Issue #2006 – The php version of Ubuntu 10.04 LTS it's too old for Owncloud 5.0. Here an help to upgrade to php 5.4
  • Xiki – A shell console with GUI features – Xiki does what shell consoles do, but lets you edit everything at any time. It's trivial to make your own commands and menus to access other tools. [ via braindead.tumblr.com ]
  • Active Directory Management with PowerShell in Windows Server 2008 R2 – One of the first things you notice with Windows Server 2008 R2 is that PowerShell 2.0 has become central to the admin function  There is a powerful Active Directory module for Powershell that contains a provider and cmdlets that are designed to allow you to manage Active Directory from the command line. Now, you can also use versions  for previous versions of Windows Server.