Wednesday, May 4, 2011
Wednesday, April 20, 2011
Accessing your Mac from your PC
Click "Start > Run" and enter "\\192.168.1.2\mymac", replacing the IP
address with the IP address of your Mac, and "edesignuk" with the short user
name of your account in OS X. When asked to authenticate enter your Mac
accounts short user name and password. All being well you should now be able
to see you entire home folder on your OS X system. You can also map this
share like you would any other Windows network share so that it is
accessible from a drive letter.
Accessing your PC from your Mac
To mount a Windows share on your Mac, click on your desktop so that Finder
is the active application, from the Finder menu go to "Go > Connect to
Server". In the "Server Address" field enter
"smb://192.168.1.3/vista-dell8300", replacing the IP address with the IP
address of your PC, and "mac" with the name of the Windows share you created
earlier.
When asked to authenticate enter the name of your PC in "Workgroup/Domain"
(Unless your PC is part of a domain and your PC account is held on a domain
controller, in which case enter the domain that you normally log on to
Windows with). For "Username" and "Password" enter the username and password
which you use to log on to your Windows machine with. Click ok and your
shared folder should be mounted as a network drive on your desktop.
--
Andre
Thursday, April 14, 2011
Friday, April 1, 2011
pfSense Open Source Firewall Distribution - Home
| |||
Project News Feed
| pfSense Digest |
| News, reviews and more related to the pfSense firewall project |
|
Friday, March 25, 2011
Friday, November 12, 2010
rsync info
Here is a summary of the few usable options:
Use the options like these examples:
rsync -rv
rsync -arv
rsync -arvz
r = recursive - means it copies directories and sub directories
v = verbose - means that it prints on the screen what is being copied
a = archive - means that symbolic links, devices, attributes, permissions, ownerships, etc. are preserved in the transfer
z = compress - compress file data
More Examples:
# rsync -r /CustomersArt/ /Volumes/Backup/CustomersArt/
The above example will copy the content of CustomersArt to /Volumes/Backup/CustomersArt/
# rsync -r /CustomersArt /Volumes/Backup/CustomersArt
The above example will copy the folder CustomersArt and its content to /Volumes/Backup/CustomersArt (it will create the folder: CustomersArt).
When using "/" at the end of source, rsync will copy the content of the last folder.
When not using "/" at the end of source, rsync will copy the last folder and the content of the folder.
When using "/" at the end of destination, rsync will paste the data inside the last folder.
When not using "/" at the end of destination, rsync will create a folder with the last destination folder name and paste the data inside that folder.