loadYOURSELF

loadYOURSELF

Browsing Posts tagged Windows

Android donwloads for developers. Windows, MAC Os, Linux binaries included in this page. And also a startup guide for beginners.You can goto page with “download page” link.

Download Page

Buy me a beer

About iTunes 9.2 (Download Page Is Shown Below)

iTunes 9.2 comes with several new features and improvements, including:

* Sync with iPhone 4 to enjoy your favorite music, movies, TV shows, books and more on-the-go
* Sync and read books with iPhone or iPod touch with iOS 4 and iBooks 1.1
* Organize and sync PDF documents as books. Read PDFs with iBooks 1.1 on iPad and any iPhone or iPod touch with iOS 4
* Organize your apps on your iOS 4 home screens into folders using iTunes
* Faster back-ups while syncing an iPhone or iPod touch with iOS 4
* Album artwork improvements make artwork appear more quickly when exploring your library

Download Page

Catalyst Mobility is a notebook reference graphics driver for with limited support for
system vendor specific features. Support is available for Windows Vista and Windows 7
to be used at your own risk.

The Installation Verification Software will prevent driver download on certain notebook
products. This is to protect against the installing of drivers that may disable features or
functionality provided by the system manufacturer. If unacceptable behavior is
experienced using Catalyst Mobility it is recommended to revert back to the driver
provided by your system vendor for your specific platform. Please check with your system
vendor for the most recent drivers for your notebook.

First of all you need to share some directories on the windows machine then you can use,


example info:

WinMachine = 10.1.1.10
user=test
pass=test
windows share name= sharefolder


mkdir /mnt/winshare

mount -o username=<username>,password=<password> //<windows-machine>/<share name> /mnt/<mount point on the linux machine>

-> with example info

mount -o username=test,password=test //10.1.10.10/sharefolder /mnt/winshare

or

this also works, (accessing full disk)

mount -o username=test,password=test //10.1.10.10/c$ /mnt/winshare

hope this helps to connect your linux pc to windows machine.

select start -> run

write “cmd” and press enter

write “cd \windows\microsoft.net\framework\v2.0.50727″ may be different in your system.

write “aspnet_regiis -ga [user name]” press enter

write “aspnet_regiis -i” press enter

Buy me a beer

Pioneer Electronics (USA) Inc., today unveils its new line of 16 in-car single CD players, offering hard disc drives and playback of various digital music formats including MP3 and Windows Media Audio (WMA). As more consumers choose to download music from the Internet and store it digitally, Pioneer is expanding its product offerings including seven new units that support MP3 and WMA. Nine models include Pioneer’s signature Organic Electroluminescent (OEL) display and two offer a new dual faceplate design that motorizes open to reveal a secondary display made of OEL.”As the mobile entertainment arena continues to evolve, Pioneer is adding new features and technologies like MP3 and WMA playback,” said Michael Townsen, vice president of marketing for mobile entertainment at Pioneer Electronics (USA) Inc. “We’ve seen enormous growth in the number of consumers who download music to use in portable CD players, so we’ve expanded our product offerings to meet the new demand.”

Music File Management

The Pioneer players will play standard audio CDs, finalized CD-Rs and finalized CD-RWs as well as finalized CD-Rs/CD-RWs containing MP3 and/or Windows Media Audio files. All files are easily accessed using Pioneer’s intuitive cross keys. Songs are accessed using its track tag information. Information displayed, including up to 32 bytes of file

Buy me a beer

Mobile World Congress, Barcelona, Spain and Fountain Valley, CA USA — Kingston Technology Company, Inc., the independent world leader in memory products, today announced the DataTraveler® Micro Reader, an all-in-one USB Flash drive and reader that can store, transfer and read content on mobile memory cards.

“As mobile phones perform more sophisticated functions, carving a greater place in the lives of mobile consumers, Kingston is developing faster speed/larger capacity cards and versatile USB/card/device readers to help users get the most out of their devices,” said Jean Wong, Flash memory product manager, Kingston®. “We believe the DT Micro Reader will be well received by the mobile community as a smart single-solution to navigate the plethora of devices and card formats on the market today.”

The DataTraveler Micro Reader is enhanced for Windows®

Buy me a beer

Atheros Communications, Inc. (NASDAQ: ATHR), a leading developer of advanced wireless and wired solutions, announced that its AR6101G ROCm™ (Radio-on-a-Chip) mobile WLAN solution was selected for the new Z-Com WP-520 Honey Pair single-mode Internet Protocol (IP) phone. Sold in pairs, the new phones enable users to make free or low-cost calls using any available wireless local area network (WLAN). Atheros’ AR6101G, the world’s only single-chip VoIP solution, allows Z-Com to offer telecom providers and retailers a highly integrated, ultra low-power design to bring voice-over-Wi-Fi to the mainstream market. Z-Com is a leading Taiwanese-based manufacturer of wireless networking equipment for service providers and home retail products. The Honey Pair phones target business and residential consumers in Europe, Southeast Asia, the Middle East and Latin America, where new IP services are emerging.

Unfortunately, ASP.NET renders div
tag controls as tables in non-IE browsers by default. In order for the
control to render properly in FireFox, you need to add the following
entries to your web.config or machine.config file:<browserCaps>
<case match=”^Mozilla/5\.0\s*([^)]*\))\s*(Gecko\/\d+)\s*Firefox\/


(?’version’(?’major’\d+)(?’minor’\.\d+)(?’letters’\w*)).*”>

type=Firefox/${version}
version=${version}
majorversion=${major}
minorversion=${minor}
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
<filter match=”^b” with=”${letters}”>
beta=true
</filter>
</case>
</browserCaps>
It’s a good idea in general to add these values to the machine.config file on your web server. Why? So things like asp:panel and other “div” based controls will render properly in FireFox.

This will show you how to automount your root Window’s parition so that you can read and write to it.
Perform the following commands to create a mountpoint and open up fstab to edit

$ su
# mkdir /media/Windows
# nano -w /etc/fstab

Now add the following to the bottom:

/dev/hda1 /media/Windows ntfs-fuse auto,user_xattr,umask=000 1 1