Use username of the remote share. You’ll be prompted for the password for the remote user:
mount -t cifs -o user=username //ip_address_of_remote_server/sharename /local_mount_point
Articles, notes and random thoughts on Software Development and Technology
Use username of the remote share. You’ll be prompted for the password for the remote user:
mount -t cifs -o user=username //ip_address_of_remote_server/sharename /local_mount_point
Over the years there’s been a few different people who have designed and built custom peripherals for the Atari ST, like SD Card readers and Ethernet adapters. These were usually sold as one-off custom orders, and built on demand. It looks like there’s a company called Lotherek that’s started to manufacturer many of these with permission from the original developers – check out their site here.
Fiddler is invaluable for monitoring HTTP requests from your browser. If you’re investigating HTTP header usage and the effort on caching static content, Fiddler is definitely the way to go, since using the Developer Tools in IE, Chrome or FireBug in Firefox don’t always give you an accurate picture of the actual outgoing HTTP requests. IE is the worst… its developer tool shows HTTP requests going out even though the files are being retrieved from cache. If you really want to see what’s going on then you need something like Fiddler.
To review requests against a server running locally (against localhost), there’s a number of tips in the docs here, but the simplest approach seems to be to use your own IP address (actual address, not 127.0.0.1) instead of localhost or any of the other approaches listed on this page. It works without any other changes.
The steps to prepare a CentOS guest for installing the VirtualBox Guest Additions are outlined here, but since it references a few other pre-req steps, here’s a list of all the steps I took to get all the dependencies installed before you can install the Guest Additions:
Install yum-priorities (http://wiki.centos.org/PackageManagement/Yum/Priorities):
yum install yum-priorities
Install RPMForge (http://wiki.centos.org/AdditionalResources/Repositories/RPMForge):
wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt rpm -i rpmforge-release-0.5.2-2.el6.rf.*.rpm
Install dkms:
yum --enablerepo rpmforge install dkms
Install dev tools and kernel development:
yum groupinstall "Development Tools" yum install kernel-devel