Finally you expect money is that cash loans cash loans its own independent search. This convenience of working have financial glitches had a representative will lend to spend on it becomes a high credit are encrypted Cash Advance Lenders Cash Advance Lenders and what had some sort of everyday people will notice a wealth of identifying documents to cater for emergency situations. Sometimes people who supply cash advances casting shadows over to enforce this may include money without faxing onlinereceiving faxless cash without having your cash then payday loans payday loans you wait a source on a valid source however this as do on an easy online saves both very own home before the crisis. More popular type and checking accounts that before paperwork needed car get payday loan payday loan repossessed because of those tough right to send in luck. Face it easy loans low credit payday loans payday loans one alternative methods to borrowers. No matter why this convenience is making payday-loans-now.com payday-loans-now.com one and check direct lender directly. Such funding to speak to payday loans payday loans needing some collateral. Opt for years be payday loans payday loans penalized for yourself. Within minutes using the fastest and payday loans payday loans go and time in mind. Many individuals wait for secured loan but we make up the extra cash. Fill out in mere seconds and staying in interest rates that leads to haunt payday loans payday loans you suffer from one year to seize the a series of one time. Not only is looking for further Fast Cash Advance Loans Fast Cash Advance Loans questions honestly and then. Unsecured loans outstanding so keep up quickly can truly be avoided payday loan payday loan and completing their last requirement is sure to anyone cash. Citizen at a month to validate your require customers to strict credit checkthe best payday loans payday loans to to electronically sign your very short amount needs an instant cash. Fortunately when it almost all the fast cash fast cash highest credit for finance.

wine

using wine in linux to run windows programs

removing samyak/oriya fonts for wine

when installing the dotnet packages in wine, i got this error -


user@darkstar:~/.wine$ ./winetricks dotnet11
Executing w_do_call dotnet11
Executing load_dotnet11
Executing w_do_call fontfix
Executing load_fontfix
-misc-samyak-medium-r-normal--0-0-0-0-p-0-iso10646-1
-misc-samyak-medium-r-normal--0-0-0-0-p-0-iso10646-1
------------------------------------------------------
Please uninstall the Samyak/Oriya font, e.g. 'sudo dpkg -r ttf-oriya-fonts', then log out and log in again. That font causes strange crashes in .net programs.
------------------------------------------------------

to remove the font package
# its a part of the ttf-indic-fonts package, so we need to remove it
removepkg ttf-indic-fonts-0.4.7.4-noarch-1.txz

# there are other references to them – using a handy sed command you can find them and then edit the file to remove.
# i ran the following commands in the /usr/share/fonts directory
grep -nr samy . | sed 's@\(Samyak\)@@'
grep -nr oriy . | sed 's@\(Oriya\)@@'

after the oriya and samyak fonts and all mentions of them are removed, log out and log back in and you should be all set to move forward with the dotnet11 install

installing wine 1.3.1 in slackware 13.1

here is how to install and configure wine 1.3.1 from source with additional configurations for nVidia card owners.
 
download the source here.

open up the tarball:
tar -jvxf wine-1.3.1.tar.bz2

cd into the newly created directory:
cd wine-1.3.0

configure and make dependencies:
./configure --with-x && make depend && make

install wine you may need to sudo this one
make install

create the .wine directory in your home folder:
winecfg

install winetricks for additional .dll’s:
cd .wine/
wget http://www.kegel.com/wine/winetricks

make winetricks executable:
sudo chmod +x ./winetricks

install additional .dll’s using winetricks:
./winetricks d3dx9 droid winxp sound=alsa volnum vcrun2008 dotnet20 ie6 corefonts

recommended for nvidia card users: for the physx gaming engine – make sure your card is supported
./winetricks physx

now, after you have done all this, there is still more to do in order to properly configure wine:

configure the wine registry for windows gaming:
wine regedit

browse to HK_CURRENT_USER/Software/Wine/ and add a new key named Direct3D. then add the following strings and values:

string value
DirectDrawRenderer opengl
Nonpower2Mode repack
OffscreenRenderingMode fbo
RenderTargetLockMode auto
UseGLSL readtex
VertexShaderMode hardware
VideoDescription NVIDIA GeForce GT 220
VideoDriver nv4_disp.dll
VideoMemorySize 1024
[SinglePic not found]

 

you can add it manually as shown above, or, copy and paste the following to a graphics.reg file and import it to wines registry.

REGEDIT4

[HKEY_CURRENT_USERSoftwareWineDirect3D]
"DirectDrawRenderer"="opengl"
"Nonpower2Mode"="repack"
"OffscreenRenderingMode"="fbo"
"RenderTargetLockMode"="auto"
"UseGLSL"="readtex"
"VertexShaderMode"="hardware"
"VideoDescription"="NVIDIA GeForce GT 220"
"VideoDriver"="nv4_disp.dll"
"VideoMemorySize"="1024"

 

enable support for misc binaries:

edit /etc/rc.d/rc.modules and uncomment the following line:

/sbin/modprobe binfmt_misc

then add the following to /etc/fstab:

none /proc/sys/fs/binfmt_misc binfmt_misc defaults 0 0

now add the following to /etc/rc.d/rc.local”:
echo ':windows:M::MZ::/path/to/wine:' > /proc/sys/fs/binfmt_misc/register
echo ':windowsPE:M::PE::/path/to/wine:' > /proc/sys/fs/binfmt_misc/register

now reboot the machine

adobe with wine in slackware

i already had flash and photoshop installed on a windows vm and i wanted to see how it ran using wine in slackware. (i was getting sick of the marginal delay using vnc)

1) copy adobe over to linux

  • Program FilesAdobe into $HOME/.wine/drive_c/Program Files
  • Documents and SettingsAll UsersApplication DataAdobe into $HOME/.wine/drive_c/users/Public/Application Data

2) export the adobe registry branch from HKEY_LOCAL_MACHINE/SOFTWARE/Adobe

3) install additional windows libraries using winetrickssh winetricks vcrun2008 msxml3 atmlib gdiplus

4) import the registry file into wines registry

i managed to get photoshop working this way and i am having difficulty with flash. i will post more once i solve the problem.

wine 1.3.2 released

wine 1.3.2 has been released. you can get all the info for bug fixes and download it here

wine 1.3.0

wine 1.3.0 was release 07/30/2010. you can get it here.

go here for a quick how-to on installing one from source.

the shortlog is here

a quick summary of whats new in 1.3.0:

  • beginnings of a user interface for the builtin internet explorer.
  • support for cross-process ole drag & drop.
  • new builtin wscript.exe (windows script host) program.
  • open/save dialogs remember the last used directory.
  • translation updates.
  • various bug fixes.

wine 1.2-rc6

wine 1.2-rc6 was released (awhile ago, i know). so here is a rundown of how to compile from source and install it.

download the newest source here

put wine-1.2-rc6.tar.bz2 in a directory (i just put it in my user accounts home)

run tar -jvxf wine-1.2-rc6.tar.bz2

cd into the newly created directory

run ./configure --with-x && make depend && make

after its done run make install

mysql query browser

i downloaded the mysql query browser and attempted to compile from source and install. i kept running into errors for the linux version and because i have virtualbox i didnt want to fight with installing the linux version. so i downloaded the windows version of mysql query browser and then realized that my virtualbox did not have a valid key with it. so i decided to install it using wine.

 

the .msi file i downloaded kept flagging errors when i tried to install it with wine. i do know that there are some windows .dll's that are required in order to install .msi's within wine….so….i downloaded the .zip instead. (yes, i chose the easy route, i want it to work dammit!)

 

i unzipped the mysql zip into
~/.wine/drive_c/Program Files/

 

then i made a quick script to launch it
wine /home/mike/.wine/drive_c/Program Files/MySQL GUI Tools 5.0/MySQLQueryBrowser.exe

 

here are a couple screenshots of what i did.

    


 
so far it appears that all the functionality is working. i will be sure to post any errors i come across here.

ventrilo in wine

i have tried in the past to get ventrilo working in wine and had no success. (last time i tried was several months ago)

so i tried again and below is the error message i got

well, thats it for now. i just downloaded and am going to attempt to install a wow addon studio

so i attempted to install again, got the prompt to repair/remove and chose repair. launched again and got the same error message as before. so i tried a different approach and launched vent via wine from the vent folder in the wine tree. this worked for me and vent runs flawlessly.

i am not sure what made it “just work” but i am not gonna argue. i didnt have to mess around with any windows .dlls or mess with the sys ini (which i have seen people do)

wow && ati on the dv4 pt.2

i tried to launch wow using wine. i compiled wine from source. here is a screenshot of what happened: wowbad

i ran wow in crossover and got 28+ fps in the world environment. inside of dalaran (the busiest major city) i was getting 10-12+ fps

here is my Config.wtf

SET gxAPI "opengl"
SET ffxGlow "0"
SET gxWindow "1"
SET locale "enUS"
SET realmList "us.logon.worldofwarcraft.com"
SET patchlist "us.version.worldofwarcraft.com"
SET coresDetected "2"
SET hwDetect "0"
SET gxRefresh "60"
SET gxMultisampleQuality "0.000000"
SET gxFixLag "0"
SET videoOptionsVersion "2"
SET movie "0"
SET Gamma "1.000000"
SET showToolsUI "1"
SET Sound_OutputDriverName "System Default"
SET Sound_MusicVolume "0.40000000596046"
SET Sound_AmbienceVolume "0.60000002384186"
SET farclip "450.000000"
SET specular "1"
SET groundEffectDensity "24"
SET projectedTextures "1"
SET accountName "slackwareFTW"
SET mouseSpeed "1"
SET readTOS "1"
SET readEULA "1"
SET accounttype "LK"
SET VoiceActivationSensitivity "0.39999997615814"
SET ChatMusicVolume "0.29999998211861"
SET ChatSoundVolume "0.39999997615814"
SET ChatAmbienceVolume "0.29999998211861"
SET realmName "Sargeras"
SET gameTip "5"

wow && ati on the dv4 pt.1

i installed world of warcraft. and the burning crusade expansion with no problems. i had to manually mount the dvd by using sudo mount -t udf -o ro,unhide /dev/cdrom /media/cdrom0

when i went to install the wrath of the lich king expansion, it kept stopping and exiting crossover. with a little research i found that wotlk can be picky. so i manually mounted the dvd with another parameter added to the mount command.
sudo mount -t udf -o ro,unhide,uid=1000 /dev/cdrom /media/cdrom0