Followers gadget...
November 29th, 2009Have you noticed this?
The Google FriendConnect gadget has been added to the side bar!
Help yourself ![]()
![]()
Telnet access on livebox
July 11th, 2008Somehow, the default IP address of the Livebox is 192.168.1.1
telnet 192.168.1.1 user: root passwd: 1234
Getting Time Machine working with a QNAP TS209
July 6th, 2008After fighting a while to get Time Machine working wirelessly with a QNAP NAS, here are some points I’ve faced.
First, the AppleTalk file service has been enabled on the NAS.
A share is created to store the Time Machine data, let’s call it macbkp.
When using a network filesystem to store its data, Time Machine is using sparsebundle files. The first issue has been faced when Time Machine has failed to access the sparsebundle file it has created.
I’ve tried a few things, such has creating a “local Time Machine backup” and then copying it to the NAS… with no luck![]()
The solution I’ve used is as follow:
- Creating an image file on the NAS
- Using this file as a
HFS+filesystem to store Time Machine Data
The QNAP TS209 (pro II) is running linux. So it shouldn’t be too hard to create the image file.
For now, I don’t really know what will be the amount of data generated by Time Machine. The image file will be sized as the hard drive of the MacBook ( 160GB ).
Connect to the QNAP using ssh:
[user@machine:~] ssh admin@qnap_name_or_ip
Open the /share/macbkp folder, and create the image file:
[~] # cd /share/macbkp [/share/macbkp] # dd if=/dev/zero \ of=mac-machine-name_mac-machine-MAC-address.dmg bs=1M count=163840
Fortunately, I also have a linux machine running on the network, that will be used to format the image file with a HFS+ filesystem. From a Ubuntu linux machine, using hfstools:
root@ubuntu:/mnt# mkdir nas root@ubuntu:/mnt# mount -t nfs qnap_name_or_ip:/macbkp /mnt/nas/ root@ubuntu:/mnt# cd nas root@ubuntu:/mnt# mkfs.hfsplus -v "Time Machine" \ mac-machine-name_mac-machine-MAC-address.dmg
On the Mac OS machine, simply connect to the NAS, run Time Machine configuration, and choose the macbkp folder as the Time Machine drive… and… that’s it!
Dual boot Solaris 10 x86 and Linux RedHat (tested on a Sun x4150 server)
July 6th, 2008Typo fixed thanks to ces
Here is something quite simple but, one just have to remember about it…
From what I’ve read about Solaris and ext2/3 filesystems, these filesystems should never be supported in Solaris.
So if one want to run a dual boot configuration with Solaris and Linux, here is a way to proceed:
- First, install Solaris 10 x86 on the server.
Solaris grubwill be installed on the disk, allowing to boot the Solaris 10 x86 system. - Then, install the Linux distro on the second disk (or any other disk).
This time,grubfrom the Linux distro will be installed on the disk, and will override theMBRinstallation.
Thsu, when booting the server, the Linuxgrubwill be launched. Edit the Linux grub configuration to chainload the Solaris OS.
While running Linux, connect as root:[root@linux:~] vi /boot/grub/grub.conf
Add the following to the configuration file:
title Solaris 10 x86 U5 rootnoverify (hd0,0) makeactive chainloader +1Here, Linux has been installed on the second disk (
), Solaris on the first disk (hd(1,0)(hd1,0)).hd(0,0)(hd0,0)rootnoverifywon’t attempt to mount the partition (not sure that the Solaris filesystem is supported as well).For more information about grub command, follow this link
- Reboot the server, and Solaris will be available from the
grubprompt
Library path in Solaris 10 (especially when using blastwave packages)
June 26th, 2008Here is something i always forget about… “howto set the path for libraries” in Solaris 10.
As I was trying to get OpenSSH 5.0p1 compiled for a Solaris 10 x86 machine, I’ve been facing a “no recent OpenSSL libcrypto found” error.
However, the libcrypto has been installed with the blastwave openssl package.
The path for this library is /opt/csw/lib/libcrypto.so.0.9.8. So the library path needs to contain /opt/csw/lib.
Using Solaris 10 (x86 or SPARC), the magic command as follow:
root@sunx86:/# crle -c /var/ld/ld.config -l /lib:/usr/lib:/opt/csw/lib
By the way, you may add whatever you want in the path as soon as it is a valid one ![]()
Number of graphical objects in MS Windows XP
June 26th, 2008For once, I’ll post what is more a question than a solution ![]()
It may happen that, while using Windows XP on a recent 2GB memory workstation, one is not able to open a new tab in IE, or open a new window of his favorite application.
This is mainly due to the fact that Windows is limiting the number of GDI handles. This is done in the registry. The default value is set to 10000 and can be set up to 16384.
That is where my question comes. I’ve created an adm file to modify the settings using a GPO in AD.
This GPO should allow to modify the number of user process handles as well.
Here is how the file looks like:
CLASS MACHINE
CATEGORY "System"
CATEGORY "Windows Session"
POLICY "GDI handles limit"
KEYNAME "Software\Microsoft\Windows NT\CurrentVersion\Windows"
PART "Max number of GDI Handles" NUMERIC REQUIRED
VALUENAME "GDIProcessHandleQuota"
MIN 10000 MAX 16384 DEFAULT 10000
SPIN 1000
END PART
END POLICY
POLICY "process handles limit"
KEYNAME "Software\Microsoft\Windows NT\CurrentVersion\Windows"
PART "Max number of PROCESS Handles" NUMERIC
VALUENAME "USERProcessHandleQuota"
MIN 10000 MAX 18000 DEFAULT 10000
SPIN 1000
END PART
END POLICY
POLICY "Session Manager tuning"
KEYNAME "System\CurrentControlSet\Control\Session Manager\Subsystems"
EXPLAIN "To enhance the benefits of increasing the GDI handles limit..."
PART "Shared section in Session Manager" COMBOBOX EXPANDABLETEXT
SUGGESTIONS
...
END SUGGESTIONS
VALUENAME "Windows"
END PART
END POLICY
END CATEGORY ;; Windows Session
END CATEGORY ;; System
Unfortunately, the GPOs are not allowing these registry keys to be modified… So… What am i missing???
I’d appreciate any help or remarks on this point… allowing me not to run a “dot reg” on each machine I need to modify.