English http://vanilla.slitaz.org/index.php?p=/categories/en-general/p60/feed.rss Mon, 29 Apr 24 21:59:32 +0200 English en-CA mysql/php/localhost help http://vanilla.slitaz.org/index.php?p=/discussion/129/mysqlphplocalhost-help Fri, 06 Nov 2009 16:30:47 +0100 anlgp 129@/index.php?p=/discussions
i have installed mySQL / PHP.. i had the localhost working yesterday (it said 'It Works!').

I logged in today after shutting the machine down and now it's not working.

I'm very new at trying to set up a website, so if you guys could tell me what files you need to help me understand this it would be greatly appreciated.

Thanks.]]>
Slitaz from Scratch http://vanilla.slitaz.org/index.php?p=/discussion/11/slitaz-from-scratch Sat, 17 Oct 2009 01:32:46 +0200 oui 11@/index.php?p=/discussions Did some one try in the last time to build Slitaz again from scratch? What did happen? Comments compared with the manual instructions?
Salut]]>
manual install http://vanilla.slitaz.org/index.php?p=/discussion/22/manual-install Mon, 19 Oct 2009 02:43:46 +0200 lmart 22@/index.php?p=/discussions
1) If you can boot on the USB stick with bios or with slitaz boot floppy plop (http://download.tuxfamily.org/slitaz/boot/floppy-grub4dos):

- install http://download.tuxfamily.org/slitaz/iso/2.0/packages-2.0.iso on a USB stick (dd if=packages-2.0.iso of=/dev/sda) assuming /dev/sda is your USB stick
- boot from the USB stick and run slitaz installer

2) if you have an Internet access and your ethernet card is recognized by gpxe

- boot from slitaz boot floppy gpxe wan boot
- run slitaz installer

-pascal]]>
Streamripper 1.63 doesnt work in new cooking http://vanilla.slitaz.org/index.php?p=/discussion/128/streamripper-1.63-doesnt-work-in-new-cooking Fri, 06 Nov 2009 14:54:27 +0100 Payoon 128@/index.php?p=/discussions No such file or directory. What can I do? I also didn't find a package libfaad in the repository.
Klaus]]>
Virtual Box guest additions http://vanilla.slitaz.org/index.php?p=/discussion/18/virtual-box-guest-additions Sat, 17 Oct 2009 20:22:02 +0200 prabirshrestha 18@/index.php?p=/discussions Newbie Comments / Questions http://vanilla.slitaz.org/index.php?p=/discussion/124/newbie-comments-questions Thu, 05 Nov 2009 22:32:34 +0100 newportbob 124@/index.php?p=/discussions Contribution http://vanilla.slitaz.org/index.php?p=/discussion/119/contribution Thu, 05 Nov 2009 12:51:37 +0100 devl547 119@/index.php?p=/discussions I can help SliTaz by writing new receipts and updating them to new software versions.
How can I upload them to you?]]>
Print Function in new cooking http://vanilla.slitaz.org/index.php?p=/discussion/117/print-function-in-new-cooking Thu, 05 Nov 2009 07:43:53 +0100 Payoon 117@/index.php?p=/discussions Otherwise the browser is very fast. I use this very often, because I print out text from www as pdf files.Now still a chance to correct, before stable release.
Best regards :
Klaus]]>
Openbox Theme Hacking http://vanilla.slitaz.org/index.php?p=/discussion/49/openbox-theme-hacking Sun, 25 Oct 2009 12:15:31 +0100 cpcnw 49@/index.php?p=/discussions
I like clearlooks but want to tweak a few things ...

/usr/sahre/themes looks interesting ... first off - size / face of font on menus etc ?]]>
Howto for truecrypt on slitaz ! Part Two! http://vanilla.slitaz.org/index.php?p=/discussion/110/howto-for-truecrypt-on-slitaz-part-two Wed, 04 Nov 2009 05:05:20 +0100 Payoon 110@/index.php?p=/discussions
Howto for truecrypt on slitaz ! Part Two!

Truecrypt should now have executable file in /usr/local/bin


Now You have to add that directory /usr/local/bin to Your PATH

so in the file .profile add the two following lines:

PATH=$PATH:/usr/local/bin

export PATH



To start Truecrypt You cando it as user or as root. If You want to access ntfs-containers You have to start from root.

But for both starting as root or as user You have to do the following:

In the GUI go to [Settings] => [Preferences] => [Mount Options] and in the field [Mount Options] type: ntfs-3g.

The go [Settings] => [Preferences] => [System Integration] and activate : Do not use kernel cryptographic services

R E B O O T!


It seems all a bit complicated and it took also some time to find out all the tricks but now it works well. Have fun!


Klaus


References:
http://www.rsa.com/rsalabs/node.asp?id=2133
http://forums.truecrypt.org/viewtopic.php?p=58222#58222
ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/ ]]>
Howto for truecrypt on slitaz ! Part one! Corrected! http://vanilla.slitaz.org/index.php?p=/discussion/109/howto-for-truecrypt-on-slitaz-part-one-corrected Wed, 04 Nov 2009 05:03:06 +0100 Payoon 109@/index.php?p=/discussions

Sorry my text was automatically reformated



Hi folks,

for some time now I have tried to install Truecrypt to SLITAZ, but it was until today, that it was succesful.
I have to say first,that most of the "Howto" came from an article
of " Micressor " on Feb. 13 2009 [ http://blog.micressor.ch/authors/1-Micressor ]written for installing Truecrypt on Lenny. This article was a little bit adapted for SLITAZ et voila it works.

The following is Howto, that hopefully helps for installing Truecrypt on SLITAZ.

The subsequent packages have to be installed first:

- slitaz-toolchain
- fuse-dev
- gtk+-dev
- pkg-config
- dmsetup ( which can be found in SLITAZ cooking packages )


Now EVERYTHING as root:

~/# tazpkg install slitaz toolchain

Fetch Cryptofiles:

~/# mkdir /usr/local/src/pkcs11

~/# cd /usr/local/src/pkcs11

~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/cryptoki.h

~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11.h

~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11f.h

~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11t.h

~/# export PKCS11_INC=/usr/local/src/pkcs11

fetch WxWidgets

~/# cd /usr/local/src

~/# wget http://prdownloads.sourceforge.net/wxwindows/wxWidgets-2.8.9.tar.gz

~/# tar xvfz wxWidgets-2.8.9.tar.gz


Download into the same directory (/usr/local/src) Truecrypt 6.3 ( and unpack it ).Then:

cd /usr/local/src/truecrypt-6.3-source

wxWidgets und Truecrypt compile:

make WXSTATIC=1 WX_ROOT=/usr/local/src/wxWidgets-2.8.9 wxbuild ( I get one warning )

make WXSTATIC=1

If You don't have a directory /usr/local/bin

then

~/# mkdir /usr/local/bin

after that

cp -p ./Main/truecrypt /usr/local/bin

]]>
owto for truecrypt on slitaz ! Part one! http://vanilla.slitaz.org/index.php?p=/discussion/108/owto-for-truecrypt-on-slitaz-part-one- Wed, 04 Nov 2009 04:57:05 +0100 Payoon 108@/index.php?p=/discussions

Hi folks,
for tsome time now I have tried to install Truecrypt to SLITAZ, but it was until today, that it was succesful.
I have to say first,that most of the "Howto" came from an article of " Micressor " on Feb. 13 2009 [ http://blog.micressor.ch/authors/1-Micressor ]written for installing Truecrypt on Lenny. This article was a little bit adapted for SLITAZ et voila it works.

The following is Howto, that hopefully helps for installing Truecrypt on SLITAZ.

The subsequent packages have to be installed first:

- slitaz-toolchain
- fuse-dev
- gtk+-dev
- pkg-config
- dmsetup ( which can be found in SLITAZ cooking packages )


Now EVERYTHING as root:

~/# tazpkg install slitaz toolchain

Fetch Cryptofiles:

~/# mkdir /usr/local/src/pkcs11
~/# cd /usr/local/src/pkcs11
~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/cryptoki.h
~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11.h
~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11f.h
~/# wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11t.h
~/# export PKCS11_INC=/usr/local/src/pkcs11

fetch WxWidgets

~/# cd /usr/local/src
~/# wget http://prdownloads.sourceforge.net/wxwindows/wxWidgets-2.8.9.tar.gz
~/# tar xfz wxWidgets-2.8.9.tar.gz


Download into the same directory (/usr/local/src) Truecrypt 6.3 ( and unpack it ).Then:

cd /usr/local/src/truecrypt-6.3-source

wxWidgets und Truecrypt compile:

make WXSTATIC=1 WX_ROOT=/usr/local/src/wxWidgets-2.8.9 wxbuild ( I get one warning )
make WXSTATIC=1

If You don't have a directory /usr/local/bin
then
~/# mkdir /usr/local/bin
after that

cp -p ./Main/truecrypt /usr/local/bin

]]>
Best wiki? http://vanilla.slitaz.org/index.php?p=/discussion/101/best-wikis Sat, 31 Oct 2009 20:45:34 +0100 slicel 101@/index.php?p=/discussions
Some wikis combine forum-like features like discussion pages or blog-like comments at the bottom of pages.

You could have a wiki instead of a forum instead of a wiki.

Thank you.]]>
Slitaz and loram? http://vanilla.slitaz.org/index.php?p=/discussion/23/slitaz-and-lorams Mon, 19 Oct 2009 04:59:34 +0200 spork 23@/index.php?p=/discussions
On the stock Slitaz 2.0 CD (from slitaz.org/en/get), is it possible to boot up with less than 256MB of RAM? I tried the cheatcode "slitaz loram", but it didn't work -- so does that mean I have to get the slitaz-loram-cdrom iso?
Thanks!]]>
slitaz is not recognicing the swap partition http://vanilla.slitaz.org/index.php?p=/discussion/100/slitaz-is-not-recognicing-the-swap-partition Sat, 31 Oct 2009 19:16:12 +0100 kultex 100@/index.php?p=/discussions is there a cheatcode that slitaz is using the swap?]]> force 1024x768x16 (or 24) mode http://vanilla.slitaz.org/index.php?p=/discussion/25/force-1024x768x16-or-24-mode Mon, 19 Oct 2009 17:59:18 +0200 Slavax 25@/index.php?p=/discussions
Install xorg.

-pascal]]>
boot slitaz in ext4 http://vanilla.slitaz.org/index.php?p=/discussion/102/boot-slitaz-in-ext4 Sun, 01 Nov 2009 04:21:15 +0100 prabirshrestha 102@/index.php?p=/discussions what are the patches needed for the kernel to boot ext4?]]> viewnior: a good image viewer with slideshow http://vanilla.slitaz.org/index.php?p=/discussion/60/viewnior-a-good-image-viewer-with-slideshow Fri, 30 Oct 2009 01:45:54 +0100 jozee 60@/index.php?p=/discussions
Under Windows I used IrfanView*. Under Linux? I didn't found an equivalent. :(

*http://www.irfanview.com/]]>
Clock change disrupts post order http://vanilla.slitaz.org/index.php?p=/discussion/97/clock-change-disrupts-post-order Fri, 30 Oct 2009 19:21:52 +0100 slicel 97@/index.php?p=/discussions Any chance to get the mirrors back into sync? http://vanilla.slitaz.org/index.php?p=/discussion/61/any-chance-to-get-the-mirrors-back-into-syncs Fri, 30 Oct 2009 09:47:59 +0100 maro 61@/index.php?p=/discussions
I'm now aware that "http://mirror.slitaz.org" is currently getting re-directed to "http://download.tuxfamily.org", but rsync does not seem to work for "mirror.slitaz.org" (probably no re-direction possible). I guess that is the reason why the other mirrors are out of sync.

I've realised that I can use rsync from "download.tuxfamily.org", so my immediate issue is gone. But in the interest of the wider public, I wonder what could be done to get all mirrors back to be up to date.

Cheers
Martin]]>
SliTaz and dm-crypt http://vanilla.slitaz.org/index.php?p=/discussion/59/slitaz-and-dm-crypt Wed, 28 Oct 2009 14:03:20 +0100 asimo 59@/index.php?p=/discussions Very nice job.

+Erjo]]>
TazPkg & (r)dependancies http://vanilla.slitaz.org/index.php?p=/discussion/36/tazpkg-rdependancies Thu, 22 Oct 2009 18:43:49 +0200 seawolf 36@/index.php?p=/discussions http://pkgs.slitaz.org/search.cgi?depends=pkg1 ?

-pascal]]>
Need for help http://vanilla.slitaz.org/index.php?p=/discussion/57/need-for-help Wed, 28 Oct 2009 04:07:22 +0100 fireflyoo 57@/index.php?p=/discussions
Are you the guy/girl who edited the Chinese wiki with draplater?]]>
slitaz without X http://vanilla.slitaz.org/index.php?p=/discussion/56/slitaz-without-x Tue, 27 Oct 2009 12:27:30 +0100 kultex 56@/index.php?p=/discussions
You can try : http://download.tuxfamily.org/slitaz/iso/2.0/flavors/slitaz-2.0-base.iso (6Mo).

Just the base system and dropbear.

+Erjo.]]>
Samba http://vanilla.slitaz.org/index.php?p=/discussion/35/samba Thu, 22 Oct 2009 09:18:41 +0200 cellar 35@/index.php?p=/discussions
What kind of Samba network ?
Domain ? Workgroup ?
Give us more information if you want to have a chance to be helped .

+Erjo.]]>
how to install rt73usb-firmware? http://vanilla.slitaz.org/index.php?p=/discussion/48/how-to-install-rt73usb-firmwares Sun, 25 Oct 2009 04:02:49 +0100 Dogs1985 48@/index.php?p=/discussions
I don't have this network card so i can't test.
But i guess you can get rt73usb-firmware from ralink homepage: http://www.ralink.com.tw/support.php?s=2 (You may accept the Licence agreement).
Unpack the file with unzip :

# tazpkg get-install unzip

Copy the rt73.bin file in /lib/firmware directory.
You will need linux-wireless wireless_tools packages too.


+Erjo]]>
Fonts Survey http://vanilla.slitaz.org/index.php?p=/discussion/58/fonts-survey Wed, 28 Oct 2009 11:27:28 +0100 cpcnw 58@/index.php?p=/discussions
Would love to try out your best suggestions :)]]>
How to dialup internet? http://vanilla.slitaz.org/index.php?p=/discussion/9/how-to-dialup-internets Thu, 15 Oct 2009 23:06:13 +0200 slicel 9@/index.php?p=/discussions
Look into the Handbook:

http://www.slitaz.org/en/doc/handbook/network-config.html

There is intruction for Dial-up modem connection with PPPoE.

- Christophe]]>
Wireless in Slitaz-X-only http://vanilla.slitaz.org/index.php?p=/discussion/55/wireless-in-slitaz-x-only Mon, 26 Oct 2009 17:56:19 +0100 newuser 55@/index.php?p=/discussions



Thanks in advance.]]>
vmware disk not recognized http://vanilla.slitaz.org/index.php?p=/discussion/33/vmware-disk-not-recognized Wed, 21 Oct 2009 19:10:31 +0200 sunliwei 33@/index.php?p=/discussions
There is no SCSI on SliTaz LiveCD.
As seawolf said, change switch your disk controler to IDE.

+Erjo]]>