Wednesday, October 07, 2015

Raspberry Pi Webmin Install & Updates Via apt-get

http://c-mobberley.com/wordpress/2013/12/24/raspberry-pi-webmin-install-updates-via-apt-get/

Auto running programs during Raspberry PI startup


http://www.raspberry-projects.com/pi/pi-operating-systems/raspbian/auto-running-programs

Setting up a Raspberry Pi as a WiFi access point


https://learn.adafruit.com/setting-up-a-raspberry-pi-as-a-wifi-access-point/install-software
Install Webmin in Raspberry PI


sudo wget http://prdownloads.sourceforge.net/webadmin/webmin-1.580.tar.gz
sudo tar -zxvf webmin-1.580.tar.gz 
sudo mkdir /var/www/webmin 
cd webmin-1.580 
sudo sh setup.sh /var/www/webmin 

The above commands are available at:
http://pastebin.com/stUvKNLX

An instruction video is available at:
https://www.youtube.com/watch?v=VYSulADwLAk

Tuesday, September 08, 2015

Mount a host folder inside a VirtualBox ubuntu guest

To mount a host folder inside a VirtualBox ubuntu guest,  you have to create a mounpoint, that is, a directory in your Ubuntu which will reflect the shared folder from Windows:
# sudo mkdir /media/windows-share
Of course you may choose an alternative path for your mountpoint. With your mountpoint created you can now mount the shared folder, like this:
# sudo mount -t vboxsf folder-name /media/windows-share
Where folder-name will be the name you assigned for this folder when you were adding it in the shared folders list.
You could use the /etc/init.d/rc.local script to execute these commands on startup to have the shared folders automatically mounted every time you start your Ubuntu VirtualBox.
http://www.giannistsakiris.com/2008/04/09/virtualbox-access-windows-host-shared-folders-from-ubuntu-guest/

Monday, October 13, 2014

Installing Z/EVES on Mac OS X

The following article is written by Andrius Velykis. The full link for the article is found below.

Z/EVES is an interactive theorem prover for Z notation. It can be used to develop Z specifications and reason about them. It has a number of attractive features, such as an easier learning curve (in comparison to related theorem provers, e.g. Isabelle), powerful proof tactics, and the ability to do proofs in Z notation.

http://andrius.velykis.lt/2012/09/installing-zeves-on-mac-os-x/

Thursday, November 07, 2013

Isabelle Keyword Dictionary

Isabelle/Isar Reference Manual
For a comprehensive guide on Isabelle commands

declare thmsdeclares theorems to the current local theory context. No theorem binding is involved here, unlike theorems or lemmas (cf.§5.11), so declare only has the efect of applying attributes as included in the theorem speci cation. Isar manual p85

Locales - A sectioning concept for Isabelle
Locales are a means to de fine local scopes for the interactive proving process of the theorem prover Isabelle. They delimit a range in which fixed assumption are made, and theorems are proved that depend on these assumptions. A locale may also contain constants de fined locally and associated with pretty printing syntax. Locales can be seen as a simple form of modules. read more

Recursive Functions - Defining Recursive Functions in Isabelle/HOL
This tutorial describes the use of the new function package, which
provides general recursive function de nitions for Isabelle/HOL. We start
with very simple examples and then gradually move on to more advanced
topics such as manual termination proofs, nested recursion, partiality, tail
recursion and congruence rules. read tutorial


Tuesday, October 22, 2013

Change uuid of harddrive in VirtualBox

When you remove a hard disk from a Virtual PC you cannot put it back into the same Virtual PC. Hence you have to change the UUID of the hard disk before you can attach it to the same Virtual PC. You can do it by issuing the following command:

VBoxManage internalcommands sethduuid disk2.vdi 

Thursday, April 18, 2013

To enable NTFS copying and modification rights in Mac

Install NTFS-3G for Mac OS X 2010.10.2

Then, you should follow these steps in order to have the latest version of MacFuse:
1) Install http://macfuse.googlecode.com/files/MacFUSE-2.0.3%2C2.dmg - RESTART
2) Install http://www.tuxera.com/mac/macfuse-core-10.5-2.1.9.dmg - RESTART
3) Install http://content.wuala.com/contents/grahamperrin/public/2010/07/31/a/MacFUSE.prefPane-2.0-64-bit-2009-09-10.zip?dl=1

Now you have the latest version of MacFuse and the 64bit prefpane.


Link to original blogspot

Wordpress : “You do not have sufficient permissions to access this page” after you change database prefix



Have you changed the prefix of your database tables? I'm 90% sure, that this is your problem.
The thing is that WordPress uses the $table_prefix variable for forming the option and usermeta keys names, where it's storing the roles and capabilities information. So once you change the prefix, but don't update your db, you get this error. Here's how to fix it - execute this SQL command through phpMyAdmin, or a different interface for interacting with your DB(you can do it with PHP as well):
UPDATE `{%TABLE_PREFIX%}usermeta` SET `meta_key` = replace(`meta_key`, '{%OLD_TABLE_PREFIX%}', '{%NEW_TABLE_PREFIX%}');
UPDATE `{%TABLE_PREFIX%}options` SET `option_name` = replace(`option_name`, '{%OLD_TABLE_PREFIX%}', '{%NEW_TABLE_PREFIX%}');
Where:
  • {%TABLE_PREFIX%} is your current $table_prefix(as set in wp-config.php)
  • {%OLD_TABLE_PREFIX%} is your previous $table_prefix
  • {%NEW_TABLE_PREFIX%} is your new(current) $table_prefix - it will most-likely be the same as your {%TABLE_PREFIX%}.
So if your old $table_prefix was wp_test_ and your new one is wp_, you would do this query:
UPDATE `wp_usermeta` SET `meta_key` = replace(`meta_key`, 'wp_test_', 'wp_');
UPDATE `wp_options` SET `option_name` = replace(`option_name`, 'wp_test_', 'wp_');
Link to the Original Post!!!