Sometimes you might need to set a user password although you don’t really need to. The most common reason to set one is to allow the user to connect through remote desktop. This will force you to authenticate every time you boot the machine. In order to avoid that (please make sure you do understand the security risks of doing that, I personally use this only on my virtual machines and only if I don’t care about securing my files) you can follow these simple steps.
Wednesday, October 3, 2012
Friday, September 21, 2012
Unable to create a site based on the “Enterprise Search Center” template
I have run into a site collection which couldn’t create a search site (they were trying to create one using the “Enterprise Search Center” template) although you could create one in the same sharepoint farm if you created a new site collection (based on the existing templates and even blank). The only obvious difference was the template they created the site collection from, which was the root of all evil.
Thursday, September 13, 2012
Modifying devices and drivers on windows
In this post I am going to show how to reset the auto numbering of new devices, how to see drivers for devices that are not connected on your pc and how to see which usb is connected to which usb controller in order to maximize the data throughput by using both controllers (which is the case of most modern laptops).
Sunday, August 5, 2012
MySQL drop all tables that follow a pattern
Playing around with drupal I had to drop all tables that were created by a module. To do so I used the following chain of commands :
mysql -u your_user -D your_database_name -e "show tables" -s |
egrep "^Whatever_" |
xargs -I "@@" echo mysql -u your_user -D your_database_name -e "DROP TABLE @@"
This will print out all the shell commands to drop the tables beginning with "Whatever_" (note the ^ regex notation). If you want it to actually execute those commands, remove the word "echo".
mysql -u your_user -D your_database_name -e "show tables" -s |
egrep "^Whatever_" |
xargs -I "@@" echo mysql -u your_user -D your_database_name -e "DROP TABLE @@"
This will print out all the shell commands to drop the tables beginning with "Whatever_" (note the ^ regex notation). If you want it to actually execute those commands, remove the word "echo".
“Request for the permission of type 'System.Web.AspNetHostingPermission’” fix
If you try to transfer an old DNN installation to a brand new Windows Server 2008 R2 you will probably run in the following run time error:
" System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."
" System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."
Thursday, July 5, 2012
Setup sharepoint server 2010 on an sql server 2012 using local account
To avoid installing the sqlserver express 2008 engine that is bundled with sharepoint server 2010, you must manipulate the installation a bit. First and foremost, install sql server 2010. Then start the SP 2010 installation as part of a farm. When the installation reaches the final step, uncheck the “configure server” option. Install sharepoint 2010 sp1 (in order to drop the system stored procedure sp_dboptions dependency). Only then, can you configure the server to connect to the already installed sql server.
Wednesday, June 6, 2012
Compile git on iPad
Having gcc up and running on an iPad, you should make a symbolic link so that cc points to gcc in /usr/bin (ln /usr/bin/gcc /usr/bin/cc) .
Download and extract the latest source from gitHub
curl –O -k https://nodeload.github.com/git/git/tarball/master
tar xvf master
Build by issuing the following command in the extracted source dir (which I renamed to git):
make NO_PERL=1 NO_TCLTK=1 NO_GETTEXT=1
Sign the app:
ldid –S git
And you are ready to use git to clone the webinos repository
iPad:~/git root# ./git clone git://github.com/webinos/Webinos-Platform.git ../webinos
Cloning into '../webinos'...
warning: templates not found /var/root/share/git-core/templates
remote: Counting objects: 4297, done.
remote: Compressing objects: 100% (2384/2384), done.
remote: Total 4297 (delta 1827), reused 3944 (delta 1647)
Receiving objects: 100% (4297/4297), 46.08 MiB | 275 KiB/s, done.
Resolving deltas: 100% (1827/1827), done.
Checking out files: 100% (1682/1682), done.
Subscribe to:
Posts (Atom)