What is Samba and when do you need it?
Samba is a set of tools to share files and printers. It implements the SMB network protocol, which is the heart of Windows networking. OS X also recognises Samba shares.
Samba can be used to:
* Act as a server for Windows (or Samba) clients: share folders and printers, including PDF pseudo-printers so all the computers in your network may write PDF files
* Act as a domain controller in a Windows network (authenticating users, etc.)
* Do some more complex things, such as using a Windows domain controller to authenticate the users of a Linux/UNIX machine
Samba is freely available under the GNU General Public License. More information about Samba can be found at http://www.samba.org.
What to install
The samba package is a meta-package intended to be installed on servers. Clients do not need this meta-package (you are acting as a client if you need to access files on another computer). For example, installing samba is not necessary if you only need your Ubuntu system to do any of the following:
* Access shared folders, drives and printers on a Windows computer (that is, act as a client with Windows servers). To do this, you only need the smbfs plugin. See MountWindowsSharesPermanently for more information.
* Have your Windows computer use (via a network) a printer that is attached to a Linux computer. CUPS can be configured to make the printer accessible to the network.
* Share directories between two Linux computers. You can use NFS or setup an SSH server on one computer and access it from other computers using an scp or sftp client, or Places -> Connect to Server… and choose “SSH” as the service type.
Nautilus Integration
If you want to be able to share folders with nautilus (the file browser), install the nautilus-share package (installed by default in Ubuntu 9.10 Desktop edition):
sudo apt-get install nautilus-share
Server
If you wish your computer to act as a Samba server (act as a file or printer server) then install the samba package (see InstallingSoftware for details):
sudo aptitude install samba
Client
The samba package is not needed on clients. Install smbfs instead (see InstallingSoftware for details):
sudo aptitude install smbfs
If you want to connect to a Samba server (Windows server or an Ubuntu server running Samba) you have two options, you can use the smbclient command or you can directly mount the samba file system via smbfs.
Command line
Ubuntu will connect to a Samba server out of the box via smbclient. This is a similar to a FTP connection. Once connected, you can use commands such as ls, cd , put, and get.
smbfs
This package allows clients to mount Samba file shares, allowing them to act as local disks. Most people will prefer this method.
Samba Client – Manual Configuration
This section covers how to manually configure and connect to a SMB file server from an Ubuntu client. smbclient is a command line tool similar to a ftp connection while smbfs allows you to mount a SMB file share. Once a SMB share is mounted it acts similar to a local hard drive (you can access the SMB share with your file browser (nautilus, konqueror, thunar, other).
Connecting to a Samba File Server from the command line
Connecting from the command line is similar to a ftp connection.
List public SMB shares with
smbclient -L //server -U user
Connect to a SMB share with
smbclient //server/share -U user
Enter you user password.
You can connect directly with
smbclient //server/share -U user%password
but your password will show on the screen (less secure).
Once connected you will get a prompt that looks like this :
smb: \>
Type “help” , without quotes, at the prompt for a list of available commands.
Connecting using CIFS
CIFS is included in the smbfs package and is a replacement for smbfs (I know, the terminology here is a little confusing).
Reference : http://linux-cifs.samba.org/
As above, install by any method, smbfs.
Allow non-root users to mount SMB shares
By default only root may mount SMB shares on the command line. To allow non-root users to mount SMB shares you could set the SUID, but I advise you configure sudo. You should configure sudo with visudo
You may either allow the gruop “users” to mount SMB shares, or add a group, samba, and add users you wish to allow to mount SMB shares to the samba group.
sudo groupadd samba
sudo adduser user samba
Change “user” to the username you wish to add to the samba group.
sudo visudo
In the “group” section add your group you wish to allow to mount SMB shares
Add a line in the “group” section :
## Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
%samba ALL=(ALL) /bin/mount,/bin/umount,/sbin/mount.cifs,/sbin/umount.cifs
Change “%samba” to “%users” if you wish to allow members of the users group to mount SMB shares.
The following will mount the myshare folder on myserver to ~/mnt (it will be in your home directory):
mkdir ~/mnt
sudo mount -t cifs //myserver_ip_address/myshare ~/mnt -o username=samb_user,noexec
Note: “samba_user” = the user name on the samba server (may be different from your log-in name on the client).
The “noexec” option prevents executable scripts running from the SMB share.
You will be asked for BOTH your sudo and then your samba_user password.
To umount,
sudo umount ~/mnt
Automagically mount SMB shares
In order to have a share mounted automatically every time you reboot, you need to do the following:
With any editor, create a file containing your Windows/Samba user account details:
gksu gedit /etc/samba/user
KDE users must use kdesu rather than gksu and instead of Gedit they can use Kwrite as editor.
… it should contain two lines as follows:
username=samba_user
password=samba_user_password
Note: “samba_user” = the user name on the samba server (may be different from your log-in name on the client). “samba_user_password” is the password you assigned to the samba_user on the samba server.
Save the file and exit gedit.
Change the permissions on the file for security:
sudo chmod 0400 /etc/samba/user # permissions of 0400 = read only
Now create a directory where you want to mount your share (e.g. /media/samba_share):
sudo mkdir /media/samba_share
Now, using any editor, and add a line to /etc/fstab for your SMB share as follows:
sudo cp /etc/fstab /etc/fstab.bak
gksu gedit /etc/fstab
Add a line for your SMB share:
//myserver_ip_address/m
yshare /media/samba_share cifs credentials=/etc/samba/user,noexec 0 0
The share will mount automatically when you boot. The “noexec” option prevents executable scripts running from the SMB share.
To mount the share now, without rebooting,
sudo mount /media/samba_share
You can unmount the share with :
sudo umount /media/samba_share
If you wish to increase security at the expense of convenience, use this line in /etc/fstab
//myserver_ip_address/myshare /media/samba_share cifs noauto,credentials=/etc/samba/user,noexec 0 0
The noexec” option prevents executable scripts running from the SMB share.
Edit /etc/samba/user, remove the password (leave just the samba user).
Now the share will NOT automatically mount when you boot and you will be asked for your samba password.
Mount the share with :
sudo mount /media/samba_share
CIFS may cause a shutdown error.
CIFS VFS: Server not responding.
There is a fix in the troubleshooting section of this forum post.
Connecting using SMBFS (deprecated)
Note: This method still works, but as outlined under the “CIFS” section above is “deprecated” (no longer maintained and pending removal from the kernel).
Mounting a share on the local filesystem allows you to work around programs that do not yet use GnomeVFS to browse remote shares transparently. To mount a SMB share, first install smbfs:
sudo apt-get update
sudo apt-get install smbfs
To allow non root accounts to mount shares, change the permissions on the smbmnt program thus:
sudo chmod u+s /usr/bin/smbmnt /usr/bin/smbumount
Note: This may be a security risk as after setting the SUID bit anyone can mount a SMB share. I advise you configure sudo, as above.
The working line in /etc/sudoers is as follows (see CIFS section above):
%samba ALL=(ALL) /bin/mount,/bin/umount,/sbin/mount.cifs,/sbin/umount.cifs,/usr/bin/smbmount,/usr/bin/smbumount
This allows any user in the samba group to mount SMB shares (you will need to create a samba group and add users).
The following will mount the myshare folder on myserver to ~/mnt (it will be in your home directory):
mkdir ~/mnt
smbmount //myserver/myshare ~/mnt
To umount,
smbumount ~/mnt
In order to have a share mounted automatically every time you reboot, you need to do the following:
Open a shell as root
sudo -s
Create a file containing your Windows/Samba user account details:
vi /etc/samba/user
…it should contain two lines as follows:
username=george
password=secret
Change the permissions on the file for security:
chmod 0600 /etc/samba/user
Now create a directory where you want to mount your share (e.g. /mnt/data):
mkdir /mnt/data
Now edit the file system table (/etc/fstab) and add a line as follows:
//server/share /mnt/data smbfs credentials=/etc/samba/user,rw,uid=bob 0 0
…where ‘bob’ is the non-root user you log into ubuntu with, ‘server’ is the name or address of the Windows machine and ‘share’ is the name of the share.
To mount the share now, just use the following command as root. It will mount automatically on subsequent reboots.
mount /mnt/data
Ubuntu Client
On the Ubuntu client using the menu at the top, go to “Places” -> “Network”. You will see an icon “Windows network” and should be able to browse to your shared folder. You will be asked for a password, leave it blank. Click the “Connect button.
(no need for a password).
If you would like to mount your SMB share using your (server) hostname rather than the IP Address, edit /etc/hosts and add your samba server (syntax IP Address hostname).
192.168.1.100 hostname
Where “hostname” = the name of your samba server.
Windows Client
On Windows open “My Computer” and navigate to “My Network Places”. Navigate to your Ubuntu server and your share will be available without a password.
Alternate : From the menu at the top select “Tools” -> “Map Network Drive”. Select an available letter for your SMB share (Default is z: ). In the “Folder:” box enter \\samba_server_ipaddress\share. Tic (Select with the mouse) the option “Reconnect at login” if you want the share to be automatically mounted when you boot Windows. Click the “Finish” box. A dialog box will appear, enter your samba user name and password. Click “OK”.
If you would like to mount your SMB share using your (server) hostname rather than the IP Address, edit C:\WINDOWS\system32\drivers\etc\hosts and add your samba server (syntax IP Address hostname).
192.168.1.100 hostname
Where “hostname” = the name of your samba server. Back to top
Samba Server Configuration – Graphical
Note: For Ubuntu 8.04 (Hardy) and later, shared folders are created directly from the folder. Browse to the location of the folder you would like to share, right-click the folder, and choose Sharing Options. Click the Share this folder.
This section should allow you to “quick start” SMB shares between Ubuntu and either Ubuntu or Windows servers. The gui method is easier to work with, because:
1. Shares are Public (browsable in Network Places)
2. A password is not set for shares (they can be mounted by anyone).
However, remember that this is less secure.
Be warned you are installing a service (server) and you may wish to install a Firewall management utility to help prevent undesired access. See also the manual configuration sections below to learn how to “hide” your shares from browsing and set a password for access.
Ubuntu Server
This section enables Ubuntu as a samba file server.
Sharing a Folder
To share a directory you must have permission to access the directory. Go to your home directory ( Places -> Home folder). Right click on the “Documents” directory and in the pop up menu select “Share Folder”.
If samba is not installed you will get a pop up menu “Sharing services are not installed”. Select “Install Windows networks support (SMB)” and deselect “Install Unix networks support (NFS)” -> then click “Install services”.
If you get an error message that the samba .deb could not be found, open a terminal and update apt-get.
sudo apt-get update
Try again and Ubuntu will download and install samba. Right click on the “Documents” directory and in the pop up menu select “Share Folder”. You will get a pop up menu “Share Folder”. Select “Windows networks (SMB)” in the pull down menu and give your share a name in the “Name” box. Unselect the “Read only” check box if you want read/write access to the share. Click the “Share” button.
Windows XP Server
This section enables Windows XP as a samba file server.
Sh
aring a Folder
1. On the Windows server, browse in explorer (“My Computer”) to the location of the folder you wish to share (C:\Documents and Settings for example). Next right click on the folder to share and select “Sharing and Security…”. In the pop-up dialog box click the “Sharing” tab. Click the “Network Setup Wizard” to configure your network to allow shares. Work your way through the wizard. Note the default workgroup is MSHOME. You may change this value if you like but all your computers should be in the same workgroup. Eventually you will be given the option to “Turn on file and printer sharing”. This is the option you want, continue with the network wizard. You will have to restart your computer for the settings to take effect -> Restart Windows.
2. After rebooting, again open explorer (“My Computer”) and navigate to the folder you wish to share. Again right click on the folder and select “Sharing and Security…”. In the pop-up dialog box click the “Sharing” tab. In the “Network sharing and security” box, tic (select with the mouse) the “Share this folder on the network” box. Give the folder a share name. This will give read only access to Ubuntu computers via samba. To allow read/write access tic (select with the mouse) the “Allow network users to change my files” box. Click the “Apply” button and close the dialog box.
Samba Server Configuration – Manual
Configuration is performed by reading and editing /etc/samba/smb.conf, the configuration file for the samba server.
There are a few graphical tools available such as “kdenetwork-filesharing” and “Swat”.
A fairly comprehensive graphical Samba configuration tool is available for KDE, by installing the “kdenetwork-filesharing” package. Once install, you can find it by launching the KDE Control Center. (Alt-F2 and then type kcontrol). Browse to Internet & Network > Samba. It is fairly easy to use.
A less friendly but also graphical tool is Swat, a web-based interface.
The following tips show how to do some basic things without installing additional software, using the command line. It is not difficult, just be careful with typos.
First open a terminal: Applications > System Tools > Terminal and open the file smb.conf
sudo nano -w /etc/samba/smb.conf
How to Save: To save in nano use “CTRL-O”, then “CTRL-X”.
Tip: Replacing nano with gedit gives you a nice graphical editor.
The file *smb.conf* is divided in several sections:
Global Settings
Debugging/Accounting
Authentication
Printing
File sharing
Misc
Share Definitions
Comments may start with either a # or a ;
Global Settings
Let’s start with Global Settings. Here you will see several lines, which you can also see in the graphical networktool like workgroup and wins server. If you changed everything to your liking already then you can skip this section, if not change to what you need. If you do not know what items mean, leave them be and read the relevant part in the real Samba-howto instead of randomly changing them. It will save you trouble-shooting later.
File Sharing (Basics)
The important part for us is File sharing. Samba shares are named in brackets, [ ], and configured by adding options in the lines that follow. Most options are boolean (yes / no).
We need to change:
[homes]
comment = Home Directories
browseable = no
# By default, the home directories are exported read-only. Change next
# parameter to ‘yes’ if you want to be able to write to them.
writable = no
This describes your /home folder. Usually you want to share this folder in a home-environment, because these are the files you want to share. To do so, make the following changes:
[homes]
comment = Home Directories
browseable = yes
# By default, the home directories are exported read-only. Change next
# parameter to ‘yes’ if you want to be able to write to them.
writable = yes
This finishes sharing your /home folder. The last thing we need to do is fixing a user.
Add users who can access your shares with the ‘smbpasswd’ command.
sudo smbpasswd -a username
New SMB password:
Retype new SMB password:
Added user username.
NOTE: the username used here should be a real user setup on your PC/Server. Reload Samba for every change to users/passwords or ‘smb.conf’
sudo /etc/init.d/samba reload
That’s the basis of Samba file-sharing. Please leave your comments about what else is needed here.
* Can/should the SMB password be different from the user’s system password? MartinSpacek – 2007-11-19
File Sharing (Advanced)
We started with the base of Samba file-sharing. The above-mentioned items should be enough to get you started. Next we will add details that you might or might not need.
If you have more than one network card
If you have more than one network card (or interface) then you have to define where you want Samba to run. In smb.conf under the [global] section, add:
interfaces = 127.0.0.1, 192.168.0.31/24
bind interfaces only = yes
The first address (127.0.0.1), is a loopback network connection (it’s your own machine). The second address (192.168.0.31), is the address of the card you want Samba to run on, the second number (24) is the subnet default for a CLASS-C network. It may vary depending on your network.
With “bind interfaces only” you limit which interfaces on a machine will serve SMB requests.
You can limit which IP address can connect to your Samba server adding these lines:
hosts allow = 127.0.0.1, 192.168.0.31, 192.168.0.32
hosts deny = 0.0.0.0/0
The loopback address must be present in the first line. The second line deny access from all IP address not in the first line.
Private and public shares in same config
First you’ll want to set this up in the [global] section of your smb.conf
[global]
security = user
encrypt passwords = true
map to guest = bad user
guest account = nobody
security = user restricts logins to users on your server. encrypt passwords = true is necessary for most modern versions of Windows to login to your shares. map to guest = bad user will map login attempts with bad user names to the guest account you specify with guest account = nobody. That is, if you attempt to login to the share with a user name not set up with smbpasswd the you will be logged in as the user nobody.
Next the private share
[private]
comment = Private Share
path = /path/to/share/point
browseable = no
read only = no
If browsable is set to no the share will not show up on graphical browsers such a “My Network Places” on Windows or Places -> Network on Ubuntu.
path is the path to the directory that you want to share out. browseable = no will have the share not show up when users browse the network. read only = no will let you, as an authenticated user, write to the share.
Finally, the public share
[public]
comment = Public Share
path = /path/to/share/point
read only = no
guest only = yes
guest ok = yes
Again, path is the path to the di
rectory that you want to share out. read only = no will allow users to write to this share. guest only = yes and guest ok = yes will allow guest logins and also force users to login as guests. The user you specified with guest account in the [global] section must have write permissions on /path/to/share/point in order to write files to the share.
Note: When Windows attempts to access a SMB share it will use the current Windows user name and password. The map to guest = bad user trick above allows access to the public share only if you give Samba an incorrect user name. If you give it a valid user name, but a bad password, the login will fail and Windows will give you a password prompt when you try to access the share. If you have the same user name for your Windows machine and your Ubuntu machine, you could be unwittingly giving the Samba server a valid user name, but invalid password. To resolve this you will either have to change the Windows user name, or to remove that user name from the Samba password file with sudo smbpasswd -x [username].
Note: The above uses security = user. To access the private shares you will have to make sure the user exists in smbpasswd. These users must also already exist as normal users on your machine. You add users to smbpasswd simply by running sudo smbpasswd -a [username] and giving a password.
Setting permissions
To set permissions of newly created documents / files edit /etc/samba/smb.conf and in the [global] section add :
create mask = 0644
directory mask = 0755
Sharing CUPS Printers
Graphical Configuration
Setup Ubuntu Print Server
1. In your menu go to System -> Administration -> Printing
2. Under “Local Printers” on the left, select the printer you wish to share. Select the “Policies” tab on the right and make sure the “Shared” box is selected.
Ubuntu Client
1. Again go to System -> Administration -> Printing
2. Click “New Printer” in the upper right. In the next menu select “Windows Printer via SAMBA”. Now enter your Ubuntu Samba Print Server (set up as above) IP address in the box on the left titled “smb://”. Click the “Browse” button.
3. Select the printer in the “SMB Browser” window (Click on the little arrows). Once you have selected your printer, check the “Authentication required” and enter your samba user name and password. Then click the “Verify” button. You should see confirmation that the share is available.
4. Click the “Forward” button and install the drivers for your printer as you would for any other printer.
Windows Client
1. Go to Control Panel -> Printers
2. Click “Add a printer” on the upper left. The printer wizard will start -> click forward. Select Network Printer and click “Next”. Select “Browse for a printer” (Top button) and click “Next”. In the next window, navigate to your Ubuntu Samba Print Server and click “Next”. Continue with the printer and driver installation.
Manual Server Configuration
If You would like to share Your printers make the following changes to Samba:
If not already done create the Samba-user You want the share to be used by.
In smb.conf uncomment and change the lines ending up with the following configuration:
########## Printing ##########
# If you want to automatically load your printer list rather
# than setting them up individually then you’ll need this
load printers = yes
# [...] // Some BSD printing stuff, do not edit if You do not need to
# CUPS printing. See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
printing = cups
printcap name = cups
and in the Share Definitions section append and/or modify the [printers] part ending up like this:
# ======================= Share Definitions =======================
# [...] // File and Folder sharing, do not edit if You do not need to
[printers]
comment = All Printers
browseable = no
path = /tmp
printable = yes
public = yes
writable = no
create mode = 0700
printcap name = /etc/printcap
print command = /usr/bin/lpr -P%p -r %s
printing = cups
Some explanation what is done:
the [printers] part defines the default-behavior for all the printers that are mentioned in “printcap name”. A sort of template how to create shares for these printers. This template is applied if “load printers” is set to true. For more detailed explanation refer to the Samba documentation.
And do not forget to reload Samba:
sudo /etc/init.d/samba reload
Securing Samba
This section was started to give some general advise on security considerations and is not an exhaustive review of samba security.
/etc/samba/smb.conf
* Networking Section – use “hosts allow” and “hosts deny”
# hosts allow = 127.0.0.1 192.168.1.0/24
hostal allow = 127.0.0.1 192.168.1.1 192.168.1.2
hosts deny = 0.0.0.0/0
* hosts deny 0.0.0.0/0 = all others.
* Shares
o When defining a share, consider the following options :
1. browseable = no ~ Shares will not show up when browsing your network.
2. users = user1 user2 ~ List of users able to access the share
When setting up a Samba share, you can limit the users who have access to your share
[private]
comment = Private Share
path = /path/to/share/point
browseable = no
read only = no
valid users = user1 user2 user3
Now only samba users user1, user2, and user3 will have access to the share “private”.
Firewall
Configure your firewall (iptables) to limit access to your server. Samba uses ports
* UDP ports 137 and 138
* TCP ports 139 and 445
Edit Smb.conf
sudo nano -w /etc/samba/smb.conf
Reload Samba
sudo /etc/init.d/samba reload
In smb.conf in section [general] add this command to share folder wth another operating system :
usershare owner only = false
source : ubuntu.com

gimana cara configure printer in the samba, gimana cara configure samba for ubuntu, setting samba client, cara membuat my network place, cara shutdown linux, software blokir internet client server, buat group di ubuntu, download samba ubuntu 9 10, mempercepat upgrade ubuntu, windows cannot connect to the printer from ubuntu, mshome net, unable mount location, sharing printer lewat virtualbox, hide ip address di ubuntu, setting up samba tutorial, join domain ubuntu, makalah web server doc, makalah web server linux doc, maping ubuntu di windows, membuka permission folder windows, sharing printer menggunakan lan pdf, mengaktifkan make this folder private, setting ip address ubuntu 10 04 dengan xp, perintah mapping drive di client di ubuntu server, mengatasi network setup wizard windows xp software, free download samba software for ubuntu 9 10, cara jadi root di winscp, cara install samba di windows 7, cara install & setting win xp dalam ubuntu pdf, cara connect client samba ke xp, cara blokir mivo tv, blok situs dari server, bagaimana cara menambah folder di file system pada ubuntu, Bagaimana cara Konfiguransi dns?, cara konfigurasi join domain kubuntu-server centos lewat samaba, cara login ssh atau telnet lewat terminal ubuntu, cara mengaktifkan shared folder di ubuntu, drive test membuat map, copy data dari komputer client ke mikrotik melalui console, cara sharing dengan mshome, cara setting xampp server windows 2003, cara remove workgroup, cara ping lewat terminal linux, cara mounting permanen di ubuntu10 10, cara mensharing windows server 2003, artikel tentang web mail service
Tags :
acces folder sharing ubuntu dari ubuntu,
access point di debian 5,
access samba share dari ubuntu,
access sharing folder in windows xp from ubuntu via terminal,
add user samba,
add user samba ubuntu,
akses samba dari ubuntu desktop,
ap debian setting,
apps pengatur file,
artikel instal samba di ubuntu desktop,
artikel instalasi samba ubuntu desktop,
artikel tentang webmail di ubuntu,
bagaimana add the following line pada hosts,
bagaimana cara aktifkan windows xp,
bagaimana cara install samba di lokalhost,
bagaimana cara install software ubuntu,
bagaimana cara login dari windows xp ke ubuntu server,
bagaimana cara login pada ubuntu jika login incorrect ?,
bagaimana cara membuat,
bagaimana cara membuat download di toolbar,
bagaimana cara membuat ip manual win7,
bagaimana cara mengaktifkan password nfs 2 di komputer,
bagaimana cara setting print di my network place,
bagaimana cara tidak connection di ninja saga,
bagaimana membuat ninja saga di facebook,
bagaimana set 2 eternet card,
bagaimana untuk membuat folder di ubuntu,
bikin ip manual,
bikin pasword folder pada windows 7,
bikin server map network dari linux untuk windows,
bikin user limited di window 7,
bikin web server sendiri windows xp,
bikin web server windows,
bikin web server windows xp,
block situs pada client mikrotik,
blocking situs client,
blog.bodi,
blogs/viewstory/222,
blok situs di client via server,
blokir situs client dari server,
bo di configuration for win xp,
buat dns 2003,
buat folder di ubuntu,
buat guest acc pake net win 7,
buat pasword folder mengaktifkan make sure private caranya,
buat server data,
buat server data dengan ubuntu,
buat server di ubuntu,
buat user samba dilinux,
buat workgroup di win server 2003,
buka network places,
buka pasword my network places,
buka pasword my network places sumber: http://blog.bodi.web.id/tag/buka-pasword-my-network-places,
buka permission di ubuntu,
buka sharing folder di windows xp dengan ubuntu,
buka sharing folder windows xp dengan ubuntu,
buka sharing windows dari command line linux ubuntu,
buka website command linux,
c/ document and setting/advan/deksktop is not accesible windows xp,
cannot print from windows 7 starter to ubuntu 8.04 shared printer,
cara add printer di linux ubuntu,
cara add printer linux,
cara aktifkan make this folder,
cara aktifkan mkdir-p pada ubuntu 9.10,
cara ambil file di windows ke ubuntu,
cara ambil ip ke file,
cara ambil printer dari ubuntu ke windows,
cara atau konfigurasi windows 7,
cara bikin password buat folder yang di share windows 7,
cara bikin password di folder share win 7,
cara bikin server lewat network,
cara blok program client lewat server,
cara blok situs mivo.tv,
cara blokir facebook di acces point,
cara blokir lewat acces point,
cara blokir sistem,
cara blokir situs di client dengan software dari server,
cara blokir website client dari dns server,
cara bongkar paswod pada server,
cara buat folder di drive d,
cara buat my network place,
cara buat network drive,
cara buat network place,
cara buat password di folder sher,
cara buat password di windows server 2003,
cara buat password root di ubuntu,
cara buat pasword share di windows 7,
cara buat server data pake samba,
cara buat server linux,
cara buat server ubuntu user windows,
cara buat sharing data dengan windows server 2003,
cara buat sharing data di server ubuntu,
cara buat ssh,
cara buat ssh key di linux,
cara buat ssh linux,
cara buat user & password di ubuntu,
cara buat user root ubuntu,
cara buat user ubuntu,
cara buat web server dengan xp,
cara buat web server di xp,
cara buka internet protokol di window 7,
cara buka password di windows server,
cara buka permission di ubuntu,
cara buka permission ubuntu pakai winscp,
cara buka sharing di windows melalui ubuntu,
cara cara meremot server linux,
cara client print documen di ubuntu,
cara configurasi server 2008,
cara configurasi server ubuntu 9.10,
cara configurasi ubuntu,
cara configure ssh,
cara connect printer dari ubuntu ke windows,
cara copy data di ubuntu,
cara copy file dari terminal,
cara copy file dari ubuntu,
cara copy file di terminal,
cara copy file lewat terminal ubuntu,
cara copy file melalui terminal,
cara copy file ubuntu,
cara copy file via smb,
cara copy file via terminal,
cara copy lewat terminal,
cara copy lewat terminla di ubuntu,
cara create folder di ubuntu,
cara dowload cf,
cara download cf,
cara download file melalui terminal,
cara edit print web,
cara edit print website,
cara file server di xp,
cara hidden folder samba,
cara hidden ip address di ubuntu,
cara hide ip address melalui ubuntu,
cara hide ip di ubuntu,
cara hide ip di windows seven,
cara insatall server web dan konfigurasi,
cara insstall samba dilinux ubuntu 9,
cara instal 2 system window xp dan ubuntu,
cara instal boxes melalui terminal ubuntu,
cara instal buat web,
cara instal dan konfiguransi server mail,
cara instal dan konfiguransi server web,
cara instal dan konfigurasi,
cara instal dan konfigurasi server mail,
cara instal dan konfigurasi server mail di ubuntu,
cara instal dan konfigurasi server web,
cara instal dan konfigurasi server web dan server mail,
cara instal dan konfigurasi server web dan server mail ubuntu,
cara instal dan konfigurasi server web mail,
cara instal dan konfigurasi server web mail ubuntu,
cara instal dan konfigurasi server web ubuntu,
cara instal dan konfigurasi web server,
cara instal dan konfigurasi web server di ubuntu,
cara instal dns di ubuntu,
cara instal include windows 7,
cara instal internet pke lan card,
cara instal linux ubuntu 2 system dengan xp,
cara instal mail server,
cara instal program di ubuntu,
cara instal samba di ubuntu 10.04,
cara instal samba di ubuntu 9.10,
cara instal samba di ubuntu desktop,
cara instal samba offline,
cara instal samba offline di ubuntu,
cara instal samba ubuntu,
cara instal snakebite,
cara instal software game di ubuntu dari terminal offline,
cara instal software ubuntu,
cara instal sofware pada ubuntu,
cara instal ubuntu 9 server,
cara instal ubuntu ke windows,
cara instal web dan konsfigurasinya,
cara instal web server ubuntu 10,
cara instal windows xp di guest,
cara instal windows xp pada komputer desktop,
cara instalansi&konfigurasi server mail,
cara instalansi&konfigurasi server web,
cara instalasi dan konfigurasi server,
cara instalasi dan konfigurasi server web,
cara instalasi dan konfigurasi web mail server,
cara instalasi dan konfigurasi web server,
cara instalasi dan konfigurasi web server di ubuntu,
cara instalasi dan konfigurasi webmail ubuntu,
cara instalasi dhcp server,
cara instalasi lan card,
cara instalasi samba di linux,
cara instalasi ubuntu,
cara install cups,
cara install di ubuntu,
cara install dns server ubuntu server,
cara install printer lewat terminal,
cara install remote desktop di linux,
cara install samba,
cara install samba 10.04,
cara install samba di linux,
cara install samba di ubuntu 10.04,
cara install samba di ubuntu 9.10,
cara install samba di windows seven,
cara install samba for ubuntu 10.04,
cara install samba ofline di ubuntu,
cara install samba server,
cara install samba server di ubuntu 9.10,
cara install samba ubuntu ,
cara install samba windows seven,
cara install server web dan server mail dan konfigurasinya,
cara install software dari terminal,
cara install software di ubuntu,
cara install software ubuntu,
cara install ssh di ubuntu,
cara install ubuntu dengan windows,
cara install web server,
cara install web server dan konfigurasi di linux ubuntu,
cara install web server di linux,
cara install win xp pada linuk,
cara install windows 2008 server,
cara install xampp on ubuntu,
cara install yahoo messenger10 di ubuntu10.10,
cara installasi dan konfigurasi ubuntu server web,
cara installasi samba di linux,
cara intal setup ubuntu,
cara intal snakebite-server-3.7.0,
cara istal printer pada ubuntu,
cara join domain dari ubuntu ke windows server,
cara join network ubuntu dengan windows,
cara join untuk ubuntu ke windows xp,
cara join windows workgroup dari ubuntu,
cara joint workgroup,
cara konfigurasi di windows 7,
cara konfigurasi dns server di linux ubuntu,
cara konfigurasi dns server pada ubuntu 9.10,
cara konfigurasi dns server ubuntu,
cara konfigurasi ip address lewat windows 7,
cara konfigurasi is not in the sudoers file,
cara konfigurasi lan,
cara konfigurasi lan card dalam windows seven,
cara konfigurasi lan card di windows 7,
cara konfigurasi linuk microtik,
cara konfigurasi linux server,
cara konfigurasi linux ubuntu,
cara konfigurasi microtik melalui telnet,
cara konfigurasi server,
cara konfigurasi ssh ubuntu,
cara konfigurasi ubuntu server,
cara konfigurasi web mail pada ubuntu,
cara konfigurasi web server,
cara konfigurasi web server di ubuntu,
cara konfigurasi webmail ubuntu,
cara konfigurasi windows 7,
cara konfigurasi windows7,
cara langkah-langkah menginstal windows xp 2,
cara linux ubuntu reinstall samba,
cara login cf,
cara login ke root shell lewat terminaldi ubuntu,
cara login lewat root ubuntu,
cara login root di winscp,
cara login root ubuntu di winscp,
cara login ubuntu desktop,
cara mambuat my netwoark places,
cara map network drive,
cara map network drive dari ubuntu,
cara map network drive diubuntu,
cara memakai snakebite 3.7.0,
cara memblokir jaringan lewat accespoint,
cara memblokir pasword excel binari,
cara memblokir system computer,
cara memblokir website dari server ke client,
cara memblokir website pada client,
cara membuar super user di ubuntu,
cara membuat acces point di windows xp,
cara membuat card untuk print,
cara membuat dns dan konfigurasi di ubuntu,
cara membuat dns server di ubuntu,
cara membuat dns server di windows server 2003,
cara membuat dns server pada linux,
cara membuat drive samba server di ubuntu server,
cara membuat file sharing,
cara membuat folder di server,
cara membuat folder di ubuntu,
cara membuat folder pada ubuntu,
cara membuat folder shared,
cara membuat ip adress ubuntu,
cara membuat map network drive,
cara membuat mshome,
cara membuat my network place,
cara membuat my network places,
cara membuat network drive,
cara membuat network place,
cara membuat network places,
cara membuat ninja saga di facebook,
cara membuat password di root,
cara membuat password ubuntu,
cara membuat place bing,
cara membuat program server client dengan linux ubuntu 9,
cara membuat script dns server ubuntu,
cara membuat server dengan linux,
cara membuat server di linux dan client di windows,
cara membuat server di ubuntu,
cara membuat server join domain,
cara membuat server web di ubuntu,
cara membuat sharing data,
cara membuat super user di ubuntu,
cara membuat user dan password di mysql,
cara membuat user printer,
cara membuat user root lewat terminal di ubuntu 9.10,
cara membuat web di linux ubuntu,
cara membuat web lewat terminal ubuntu,
cara membuat web server di ubumtu,
cara membuat web server di windows xp,
cara membuat webser bergerak di blog,
cara membuat webserver dengan os windows xp,
cara membuat website dengan ubuntu,
cara membuat website di ubuntu 10.04,
cara membuat workgroup dengan windows7,
cara membuat workgroup lewat windows 7,
cara membuat wwwebserver di windows,
cara membuka folder ubuntu,
cara membuka password my networkplace,
cara membuka permision di windows 7,
cara membuka permision windows7,
cara membuka permission di linux ubuntu,
cara membuka permission ubuntu,
cara membuka permissions ubuntu,
cara membuka program pada windows linux ubuntu,
cara membuka program win xp di ubuntu 10,
cara membuka root winscp,
cara mempartisi hardisk dengan,
cara mempercepat connection pada windows 7,
cara mempercepat update ubuntu,
cara mempercepat upgrade ubuntu,
cara menangani windows cannot acces the spesific,
cara mengaktifkan connection ubuntu,
cara mengaktifkan file samba di ubuntu,
cara mengaktifkan localhost di linux,
cara mengaktifkan make this folder privat,
cara mengaktifkan make this folder private,
cara mengaktifkan printer melalui web,
cara mengaktifkan ssh di ubuntu,
cara mengaktifkan workgroup linux client,
cara mengaktipkan directory di linux,
cara mengambil file dari windows xp to ubuntu,
cara mengambil file lewat ip addres,
cara mengambil file sharing dari linux windows,
cara mengambil file sharing dari windows dengan linux centos,
cara mengatasi window cannot acces specified,
cara mengatasi window cannot access specify path,
cara mengcopy dari desktop,
cara mengcopy desktop,
cara mengcopy destokp,
cara mengcopy file di ubuntu,
cara mengcopy web ke print,
cara mengeset ip lan di windows 7,
cara mengganti ips di windows 7,
cara menggunakan snakebite,
cara menghapus printer di ubuntu yang,
cara menghidupkan public network win 7,
cara menghilangkan windows cannot access the specified device path or file,
cara menghilangkan workgroup di ubuntu,
cara menginstal lan card,
cara menginstal lewat terminal,
cara menginstal samba di ubuntu 10,
cara menginstal samba diubuntu dekstop,
cara menginstal sharing printer pada windows 7,
cara menginstal software lewat terminal,
cara menginstall dan konfigurasi ubuntu,
cara menginstall data pada linux,
cara menginstall samba offline di ubuntu 10,
cara mengistalasi dan menkomfigurasi net work card,
cara mengkonfigurasi dns untuk windows xp,
cara mengkonfigurasi lan card dalam windows seven,
cara mengkonfigurasi lan card dalam windows seven beserta gambarnya,
cara mengkonfigurasi lan card dengan menggunakan windows seven,
cara mengkonfigurasi lan card di dalam windows seven,
cara mengkonfigurasi land card dalam windows 7,
cara mengkonfigurasi land card dalam windows seven,
cara mengkonfigurasi webmail di ubuntu,
cara mengkonfigurasi windows 7,
cara mengonci lancard,
cara mengopy dekstop,
cara mengupdate ubuntu,
cara menjaringkan komputer,
cara menjaringkan linux ke windous,
cara menjaringkan printer,
cara mensetting server ubuntu dengan client windows 7,
cara menyeting ip address pd windows 7,
cara menyeting root ubuntu,
cara meremot server,
cara meremote file server linux,
cara mindahin file lewat terminal di ubuntu,
cara moblok domain di ubuntu,
cara mount connect to server,
cara network setup wizard di windows 7,
cara network wizard windows 7,
cara networking windows dengan ubuntu,
cara ngeprin lewat clien,
cara ngeprind data dari komputer,
cara ngeprint dari cilent,
cara ngeprint dari client,
cara ngeprint lewat client,
cara ngeprint melalui user,
cara nyetting ap pada debian,
cara password folder dengan script,
cara password windows server,
cara pembuatan dns server,
cara pembuatan webserver dgn linux,
cara permission linux,
cara ping ip lewat terminal linux,
cara point to point,
cara print dari komputer client,
cara print dari user ke server,
cara print data dari komputer client,
cara print ubuntu ke xp,
cara public network,
cara reinstal versi cf,
cara remot ubuntu winscp,
cara remote direktori explore ubuntu desktop dari windows,
cara remote jaringan mikrotik di ubuntu 10.04,
cara remote linux dari window,
cara remote ubuntu 10.04 lewat website,
cara restart samba ubuntu 10.04,
cara root ubuntu,
cara save cli ubuntu,
cara save di sudo nano,
cara save di ubuntu server,
cara save file,
cara save file di ubuntu server,
cara save nano,
cara save ninja saga,
cara save terminal,
cara search folder pada ubuntu,
cara server mail ubuntu,
cara server web ubuntu,
cara server web,server mail ubuntu cara instal dan konfigurasinya,
cara serves print pd win7,
cara seting acces point,
cara seting dns server pada ubuntu,
cara seting printer ubuntu,
cara seting samba,
cara settig mshome,
cara setting acces point,
cara setting acces point di debian,
cara setting access point,
cara setting access point di debian server,
cara setting access point lewat debian,
cara setting access point tp link dengan debian,
cara setting ap pada debian,
cara setting change permission pada folder komputer,
cara setting client acces point,
cara setting debian,
cara setting dns dan web server pada ubuntu 9.10,
cara setting dns di ubuntu,
cara setting dns di ubuntu server,
cara setting dns server di ubuntu desktop,
cara setting ip address di ubuntu server,
cara setting ip address pada ubuntu,
cara setting ip address xampp di windows server 2003,
cara setting ips pada windows 7,
cara setting list user,
cara setting login incorrect in ubuntu 9.10,
cara setting mikrotik melalui telnet di debian,
cara setting my network place,
cara setting name server,
cara setting printer dari ubuntu di client linux,
cara setting samba server ubuntu 10.04,
cara setting server di ubuntu linux,
cara setting sharing dari server komputer,
cara setting sharing my network places,
cara setting sistem run,
cara setting ssh di ubuntu,
cara setting sudo code,
cara setting super user di ubuntu,
cara setting ubuntu sudo nano,
cara setting user client windows ke ubuntu server,
cara setting user di ubuntu server,
cara setting web server,
cara setting wemail di ubuntu,
cara setting workgroup di ubuntu lewat terminal,
cara shairng di ubuntu 9.10,
cara share dari server linux ke client windows,
cara share dari windows 7 ke linux samba,
cara share di my network places,
cara share di windows 7,
cara share drive di linux ubuntu dengan 2 user,
cara share drive windows 7,
cara share driver dari win7 ke win xp,
cara share folder dari server dengan lan,
cara share folder dengan samba,
cara share folder di ubuntu,
cara share folder pada samba server,
cara share folder windows 7,
cara share lewat my network places,
cara share linux 9.10 ubuntu,
cara share mount ambil data dari linux,
cara share mshome ke server,
cara share network place,
cara share printer pada windows 7,
cara share windows seven dan ubuntu,
cara shared remote destop,
cara sharing data,
cara sharing data dengan samba ubuntu 10.04,
cara sharing data dengan windows server 2003,
cara sharing data di ubuntu,
cara sharing data for xp,
cara sharing data linux ke windows,
cara sharing data online pada win server 2003,
cara sharing data pada ubuntu,
cara sharing data pada ubuntu 09.10,
cara sharing data point to point,
cara sharing data ubuntu dan windows,
cara sharing data windows xp,
cara sharing dengan network place,
cara sharing dengan ubuntu 9.10,
cara sharing dengan windows 7,
cara sharing file di ubuntu desktop,
cara sharing file linux ke windows,
cara sharing file pada linux ubuntu 9.10,
cara sharing file ubuntu,
cara sharing file ubuntu 10,
cara sharing folder dengan linux terminal,
cara sharing folder dengan ubuntu,
cara sharing folder di linux,
cara sharing folder di ubuntu 9.10,
cara sharing folder pada ubuntu 9.10,
cara sharing folder samba di ubuntu 10.04,
cara sharing linux ke windows,
cara sharing network place,
cara sharing printer dari setup wizard,
cara sharing printer dari ubuntu,
cara sharing printer dari windows client ubuntu,
cara sharing printer dari windows xp ke linux ubuntu,
cara sharing printer dari windows xp ke ubuntu,
cara sharing printer dari xp ke linux,
cara sharing printer dengan program,
cara sharing printer di ubuntu,
cara sharing printer di ubuntu ke windows,
cara sharing printer komputer via ip windows 7,
cara sharing printer melalui lan proxy .pdf,
cara sharing printer pada xp dengan ubuntu,
cara sharing printer untuk tiga komputer windows 7,
cara sharing printer via internet,
cara sharing printer windows 7 ke ubuntu,
cara sharing printer windows dan ubuntu,
cara sharing printer windows xp,
cara sharing ubuntu 9.10,
cara shere folder di ubuntu 9.10,
cara shering internet mengunakan linux ubuntu 9.10,
cara shutdown linux ubuntu,
cara ubuntu ambil printer di windows,
cara ubuntu sharing data,
cara untuk map driver conet di ubuntu,
cara update samba lewat terminal,
cara update status facebook lewat linuxer,
cara update ubuntu lewat terminal,
cara update ubuntu melalui terminal,
cara update ubuntu server,
cara upgred linuk ke windows,
cara-install-xampp-di-ubuntu,
caraseting clien server windows,
cf di download bagaimana caranya,
cheat and totur nfs speed2,
cifs vfs: close with pending writes windows server 2008 137 445,
client dan group buat windows server 2008,
close,
comand buka file di linux ubuntu,
command membuat super user di linux,
configurasi samba ubuntu 9,
connect printer dari ubuntu ke windows,
connection to group on ubuntu,
copi file lewat terminal ubuntu server,
copy 2 file lewat terminal,
copy file dari server lewat terminal ubuntu,
copy file dari terminal ubuntu,
copy file dari windows xp ke linux ubuntu,
copy file lewat terminal,
copy lewat terminal,
could not get debug privilege are you admin,
could not reconnect all network drives,
cra bikin client server linux,
cra membuat mynetwork pleaces,
cra membuat work group win 7,
create a user account on the windows system for the linux system user name that you are using to connect to the windows system.,
create password in samba file sharing,
create user client di windows 2008,
create user samba,
defining user for samba,
desktop login ubuntu,
dns server dan webmail debian,
dns server di windows xp,
dns server ubuntu desktop,
dns server windows xp,
doenload samba untuk ubuntu 9.10,
domain,
download cf,
download samba for ubuntu 9.10,
download samba linux,
download samba ubuntu,
download samba ubuntu 9.0,
download samba ubuntu 9.10,
download samba untuk ubuntu,
epson lq-2170 ubuntu,
fa,
file is in use ketika membuka program di windows seven,
file server dengan windows xp,
file server pada ubuntu,
file server ubuntu 10.04,
file sharing dan konfigurasi samba di linux ubuntu,
file sharing folder security di windows 7,
fix could not get debug privilege are you admin,
folder permission samba,
folder share limit for ubuntu desktop,
folder sharing ubuntu vs xp,
free download samba ubuntu 9.10,
fstab,
ga bisa instal samba ubuntu 10.04,
gimana cara download linux,
gimana cara download windows linux,
gimana caranya mengakses samba lewat internet,
global setting of samba in ubuntu,
google,
group printer di ubuntu,
how to buat grup di windows server 2008,
how to edit user samba,
how to make password samba,
how to see network file trough samba ubuntu,
how to share printer on linux ubuntu 9,
how to share win7 folder with samba linux,
icon,
Info,
instal nano pada ubuntu,
instal samba server,
instal share printer di ubuntu,
instal ubuntu pada windows seven,
instal web server dan konfigurasinya,
instal win7,
instalans&konfigurasi server mail,
instalasi & konfigurasi samba 9.10,
instalasi dan konfigurasi access point,
instalasi dan konfigurasi samba di linux 9.10,
instalasi dan konfigurasi server mail,
instalasi dan konfigurasi server web,
instalasi dan konfigurasi server web dan server mail,
instalasi dan konfigurasi server web indonesia,
instalasi dan konfigurasi web mail,
instalasi dan konfigurasi web mail di ubuntu,
instalasi dan konfigurasi web mail pada ubuntu,
instalasi dan konfigurasi web mail server,
instalasi dan konfigurasi web mail ubuntu,
instalasi dan konfigurasi web server,
instalasi dan konfigurasi web server dan web mail ubuntu,
instalasi dan konfigurasi web server mail pada ubuntu,
instalasi dan konfigurasi web server pada ubuntu,
instalasi dan konfigurasi webmail,
instalasi konfigurasi server mail,
instalasi ssh di ubuntu,
instalasi ubuntu untuk webmail,
instalasi web server di windows xp,
instalasi window server 2003,
instalasi xp pada client,
install,
install and configurasi mail server windows server,
install and konfigurasi mail server windows server,
install epson lq2170 cup,
install join domain xp,
install samba di ubuntu 10.04,
install samba di ubuntu lewat terminal,
install samba server di ubuntu,
install samba ubuntu 10.04,
install samba ubuntu offline,
install samba-client ubuntu 10,
install snakebite-3.7.0,
install ubuntu di windows server,
install ubuntu pada windows 7,
installing ubuntu server pada windows,
ip address ninja saga,
ip lewat terminal linux,
join domain ubuntu ke windows server 2008,
joint domain windows dari ubuntu,
kenapa my network place blank,
koneksi access point di debian,
konfigurasi /etc/samba/smb.conf pada ubuntu 7.0 pdf,
konfigurasi /etc/samba/smb.conf pada ubuntu 9.0 pdf,
konfigurasi access point di debian 5,
konfigurasi add user dengan menggunakan parameter,
konfigurasi add user dengan parameter di ubuntu,
konfigurasi add user di ubuntu,
konfigurasi adduser degan parameter,
konfigurasi adduser dengan parameter,
konfigurasi ap di ubuntu server,
konfigurasi cifs,
konfigurasi client,
konfigurasi client server,
konfigurasi dari server ke client untuk windows server 2003 dan ubuntu server,
konfigurasi dns pada samba,
konfigurasi dns samba,
konfigurasi dns server di linux ubuntu,
konfigurasi dns server ubuntu,
konfigurasi etc samba,
konfigurasi file server,
konfigurasi file server samba di ubuntu,
konfigurasi lan card dalam windows 7,
konfigurasi lan card windows 7,
konfigurasi linux add user dengan menggunakan parameter,
konfigurasi linux ubuntu,
konfigurasi linux ubuntu versi 5,
konfigurasi log in ubuntu server,
konfigurasi samba /etc/samba/smb.conf di linux ubuntu 7.0,
konfigurasi samba di ubuntu,
konfigurasi samba di ubuntu 9,
konfigurasi samba ubuntu,
konfigurasi sharing data,
konfigurasi sharing data linux ke windows xp,
konfigurasi sharing data pada windows xp,
konfigurasi sharing lan di windows 7,
konfigurasi ubuntu client,
konfigurasi web mail,
konfigurasi web server di ubuntu server,
konfigurasi web server ubuntu lengkap,
konfigurasi web sharing on ubuntu 7,
konfigurasi webmail,
konfigurasi webmail di ubuntu,
konfigurasi webserver pada dns,
konfigurasi windows 7,
konfigurasi windows 7 server,
konfigurasi windows server,
konfigurasi windows server 2003 dan ubuntu,
konfigurasi windows seven,
konfigurasi windows xp,
konfigurasi windows7,
kumpulan video konfigurasi server,
langka seting bindg di ubuntu server,
langkah instal samba,
langkah instalasi dan konfigurasi windows server 2008,
langkah lamgkah konfigurasi windows server,
langkah langkah cara membuat web server dengan ubuntu,
langkah langkah instalasi ubuntu server,
langkah langkah instalasi ubuntu server 8.04 dan settingan lan nya,
langkah langkah membuat user root di linux,
langkah langkah menginstal window xp di client,
langkah langkah sharing folder win xp,
langkah langkahsharing di ubuntu,
langkah membuat dns 2003,
langkah membuat folder,
langkah membuat folder di d,
langkah membuat server di linux ubuntu 8.04 dan langkah membuat clien d windows 7,
langkah sharing data,
langkah-langkah buat folder,file,copy melalui terminal linux,
langkah-langkah cara ngeprint data client ke server,
langkah-langkah instal linux ubuntu server,
langkah-langkah instalasi ubuntu,
langkah-langkah konfigur webserver,
langkah-langkah konfigurasi dns,
langkah-langkah konfigurasi dns samba,
langkah-langkah konfigurasi windows 7,
langkah-langkah membuat samba di ubuntu,
langkah-langkah mengkonfigurasi windows 7,
langkah-langkah pengaturan pada pc untuk 1 server 10 client,
langkah-langkah sharing data xp,
langkah-langkah sharing file di ubuntu dan windows,
langkah-langkah sharing folder pada windows seven,
langkah-langkah sharing folder pada windows xp,
langkah-langkah sharing folder pd windows seven,
langkah-langkah windows server,
liat password network places,
liat password network places windows 7,
limit jenis file pada samba ubuntu,
limit samba users home folders,
limited windows user,
linux,
Linux nux,
linux set acces file,
linux ubuntu,
list ip client di ubuntu,
login cf,
login incorrect di ubuntu 9.10,
login network drive no save password,
makalah konfigurasi web server,
makalah konfigurasi web server dan dns,
makalah konfigurasi web server.doc,
makalah proxy.pdf,
makalah server web ubuntu konfigurasi,
makalah setting lan windows 7,
makalah sharing data antara windows xp dan linux,
makalah sharing data antara windows xp ke linux,
makalah tentang proxy.pdf,
makalah tentang server web dan server mail ubuntu,
makalah web server,
makalah web server doc,
map network drive dgn ubuntu ke windows,
map network drive di ubuntu,
mapping drive pada ubuntu,
mapping folder ubuntu dan xp,
mapping ubuntu,
mapping xp,
mebuat network drive,
mebuat web dan mail server,
mematikan read only pada access 2003,
membaca folder windows di ubuntu server,
membangun samba server dengan ubuntu 9.10,
membangun web server pada linux ubuntu.pdf,
memberi permission drive di ubuntu server 8,
memblokir folder dari guest account,
memblokir ip address di ubuntu,
membuat 2 user di ubuntu,
membuat acces point linux,
membuat client server dengan linux,
membuat client starup manual win 7,
membuat directory pada ubuntu,
membuat dns server di server 2003,
membuat dns server di ubuntu desktop 9.10,
membuat dns server di windows server 2008,
membuat file di ubuntu,
membuat file server,
membuat file server dengan windows xp,
membuat file server dengan xp,
membuat file server di ubuntu,
membuat file server di ubuntu 10.04,
membuat file server ubuntu 10.04,
membuat file server windows xp,
membuat file share pada ubuntu,
membuat file sharing center ubuntu,
membuat file sharing di ubuntu,
membuat file sharing di ubuntu server,
membuat file shere ubuntu server,
membuat folder berpassword di windows 7,
membuat folder di ubuntu,
membuat folder pada linux,
membuat folder pada linux ubuntu,
membuat folder samba,
membuat group dan sharing file group dengan ubuntu,
membuat group di ubuntu,
membuat group di win server 2008,
membuat group pada debian samba,
membuat group share di win 7,
membuat group ubuntu,
membuat ip hidden speedy ubuntu,
membuat map drive test,
membuat map network drive di windows seven,
membuat mapping drive pada ubuntu,
membuat my network place,
membuat my network places,
membuat ninja saga,
membuat password cf,
membuat password di windows server,
membuat password root pada ubuntu,
membuat password root ubuntu,
membuat password server 2003,
membuat program untuk linux,
membuat samba server pada ubutnu,
membuat server di ubuntu destop:dns,
membuat server dns,
membuat server web,
membuat super user di linux,
membuat super user di ubuntu,
membuat superuser di terminal ubuntu 10,
membuat user admin di linux,
membuat user dan group,
membuat user dan group di ubuntu,
membuat user di samba,
membuat user di ubuntu,
membuat user group di ubuntu,
membuat user root di ubuntu,
membuat user root lewat terminal,
membuat user samba,
membuat user samba ubuntu,
membuat web dari linux,
membuat web server dengan wordpress di windows,
membuat web server di ubuntu destop:dns,
membuat web server di windows xp,
membuat web server menggunakan xp,
membuat web server xp,
membuat webserver samba,
membuat workgroup di windows 7,
membuka file sharing pada ubuntu,
membuka file sharing pada widows 7,
membuka folder dengan sudo,
membuka folder di ubuntu,
membuka folder ubuntu,
membuka folder windows di ubuntu server,
membuka permision folder di ubuntu,
membuka permission di ubuntu,
membuka permission folder windows system32 win 7,
membuka permission windows 7,
membuka root pada ubuntu,
membuka root terminal di ubuntu 9.10,
memindahkan atau menambah user ke grup diubuntu,
mempassword folder yg dishare for win7,
mengaktifkan file samba,
mengaktifkan id cf,
mengaktifkan samba,
mengaktifkan samba di ubuntu,
mengaktifkan shared folder melalui terminal linux,
mengaktifkan untuk user limited dan admin pada windows xp,
mengambil data dari linux ke 7,
mengcopy file pada ubuntu,
menghapus mshome,
menghilangkan mshome.net,
menginstal samba lewat terminal,
menginstall samba dari downloadan,
mengkoneksikan debian ke ap,
mengkonfigurasi server ubuntu,
mengunci folder dari guest account,
mengunci lan,
mengunci lan server,
mengunci server,
menjaringkan printer,
menkonfigurasi linux dengan xp,
menyeting ip,
meta,
mikrotik share printer client,
mikrotik smb,
mount printer di ubuntu,
mount windows network drive in ubuntu,
mounted multiple times,
nano di ubuntu 10.04,
net share lewat terminal linux,
network plece pada linux,
network setup wizard di windows 7,
network setup wizard pada windows 7,
ns,
open file lewat terminal,
passwords need for speed 2 pc,
pdf printer and sharing,
pengaturan file sharing disamba,
pengaturan printer pada windows 7,
pengertian my network place,
penginstalan ubuntu windows 2003 server,
penjelasan tentang shere,
perintah install offline di ubuntu,
perintah linux,
perintah terminal proxy ubuntu,
permasalahan yang terjadi pada access point,
permission di ubuntu,
permission folder win xp,
permission folder windows xp,
permission sharing folder,
perusahaan canonical,,
print server ubuntu server,
printer,
printer linux,
proftpd aktif ketika ubuntu hidup,
prosedur membuat folder instal,
read only data di server ubuntu,
remote desktop via web browser di ubuntu,
remote ubuntu via web,
remote via web ubuntu,
restart samba ubuntu,
restart teamviewer ubuntu,
root lewat shell,
root pada ubuntu,
samba,
samba admin all user directory,
samba all usershare browsable,
samba browseable,
samba client ubuntu,
samba dengan ubuntu,
samba di linux,
samba download for ubuntu,
samba folder permission,
samba ofline ubuntu,
samba server di ubuntu 9.10,
samba server not shown on network list windows xp,
samba ubuntu 9.10,
samba ubuntu 9.10 offline,
samba ubuntu 9.10 ofline,
samba ubuntu ke windows 7,
samba unable mount file location,
saving in sudo nano,
server dengan ubuntu desktop,
server description windows networking options samba,
server ubuntu 10 client windows,
server ubuntu dengan klien windows,
service,
set ip dengan terminal di ubuntu,
set ip manually win7,
set permissions linux ubuntu lewat shell,
set user dan group diubuntu,
seting ap di linux,
seting lan card di windows 7,
seting samba ubuntu dan windows xp,
seting ubuntu ke windows,
setings ap di debian,
setings ap on debian,
setting acces poiny debian,
setting access point pada debian,
setting access point tp link pada linux debian,
setting access point tp-link pada debian,
setting ap di debian,
setting ap di linux ubuntu 10 server,
setting artikel mikrotik melalui telnet(server) dengan debian,
setting client server dengan win 7,
setting client server di ubuntu untuk file share,
setting debian,
setting dns server windows 7,
setting file sharing di ubuntu,
setting file sharing pada linux,
setting file sharing pada ubuntu,
setting folder share name on samba,
setting lan printer dalam window 7,
setting lan windows vista home,
setting multi user access windows 7 like win 2003,
setting network setup wizard win 7,
setting nomor ip start program network connection,
setting password on samba windows file sharing,
setting permission sharing folder ubuntu dengan samba,
setting permission sharing ubuntu samba,
setting printer client ubuntu ke ubuntu,
setting samba,
setting samba di linux ubuntu,
setting samba di ubuntu,
setting samba di ubuntu 8.04,
setting samba di window,
setting samba password ubuntu,
setting smb di mikrotik,
setting tp link lewat debian,
setting up samba groups for secured windows clients,
setting web proxy pada windows server,
setting webmail di ubuntu,
setting webmail linux ubuntu,
setting webproxy pada ubuntu 9.10,
settingan untuk membuat server dari windows,
setup wizard pada windows 7,
share,
share data dengan samba 2 user,
share data linux dengan xp,
share data melalui xp dan linux,
share data pada windows dan linux,
share file di ubuntu dengan windows,
share file linux ke windows,
share files and folder using ftp on windows 7,
share folder di server dengan password,
share folder membuat user password samba,
share printer di linux,
share printer di windows 7,
share printer in windows 7 always login again,
share web server,syntax,
sharing 2 folder samba,
sharing dari debian server ke ubuntu,
sharing data dengan 2 account,
sharing data dengan ubuntu,
sharing data linux dan windows,
sharing data linux ke windows xp,
sharing data pada linux ubuntu,
sharing data windows xp ke linux,
sharing file dengan samba di ubuntu 10.04,
sharing file di linux ubuntu,
sharing file di ubuntu 10,
sharing file di ubuntu 10 dengan samba desktop,
sharing file dilinux,
sharing file samba,
sharing file ubuntu server,
sharing file/folder samba di ubuntu 9.10,
sharing folder di ubuntu,
sharing folder di ubuntu 8 dan windows xp,
sharing folder domain to workgroup windows server 2003,
sharing folder pada windows 2003 server,
sharing folder pada windows 7,
sharing folder pada windows xp,
sharing folder windows 7 ke ubuntu,
sharing folder you do not permission to access\d,
sharing printer antar linux ubuntu 9,
sharing printer antara windows dengan ubuntu,
sharing printer dari desktop linux ke windows,
sharing printer dari ubuntu client windows,
sharing printer dari ubuntu ke windows xp screenshot,
sharing printer dari windows xp ke ubuntu,
sharing printer dengan mikrotik,
sharing printer dengan ubuntu server,
sharing printer dg mikrotik,
sharing printer epson di ubuntu ke client,
sharing printer lewat acces point,
sharing printer linux ubuntu windows,
sharing printer ubuntu dan win 7,
sharing printer windows 7,
sharing printer windows 7 windows update,
sharing printer xp ke linux,
sharing printer xp ke ubuntu,
shell root,
shering folder pada windows xp,
show share folder via linux,
shring printer lewat linux,
shutdown pc dengan rdesktop di linux,
sistem security pada linux ubuntu,
snakebite-3.7.0,
snakebite-3.7.0 download,
snakebite-3.7.0 instal,
snakebite-server-3.7.0,
software menyeting ubuntu dari windows xp,
sofware blokir situs client,
solusi untuk windows cannot access the specified device,
solusi window cannot access the specified device, path, or file. you caraaa mengatasinya,
start,
sudo apt get ipx,
sudo nano,
syntax,
tambah user pada samba,
tambah user root ssh,
teamviewer,
the home folder could not be created because:the network path eas not found,
tips,
transfer-file-dari-ubuntu-ke-windows,
trik menshearing printer melalui nomor ip pada windows 7,
turoturial sharing network place,
tutor setting access point pada debian,
tutor setting ap di debian 6,
Tutorial,
tutorial cara join domain di ubuntu,
tutorial cara sharing printer lewat debian,
tutorial drive test,
tutorial makalah web server,
tutorial membangun webserver pada ubuntu pdf,
tutorial membuat folder di slakware,
tutorial membuat server pake windows 7,
tutorial membuat user accounts dan group di ubuntu,
tutorial printer sharing debian,
tutorial sharing data di windows 7,
tutorial sharing printer debian,
type connection pada ubuntu,
ubuntu,
ubuntu 10 server konfigurasi,
ubuntu 9 connect to server,
ubuntu cannot access windows share,
ubuntu connection time out samba,
ubuntu directory server join domain xp,
ubuntu folder permission,
ubuntu it seems is mounted multiple times,
ubuntu join domain windows server 2008,
ubuntu logon xp,
ubuntu mount samba limit interfaces,
ubuntu network printing error,
ubuntu printer client,
ubuntu remote desktop web connection,
ubuntu samba epson l200 howto,
ubuntu samba folder sharing user,
ubuntu samba group list user,
ubuntu samba server install gui,
ubuntu samba share non-home folders,
ubuntu user cannot change computer setting,
ubuntu10.10 server smb.conf,
ubuntu: membuat folder,
umount: it seems is mounted multiple times samba ubuntu deny multiple samba mounts,
untuk memblokir folder,
update offline windows 7,
update ubuntu from terminal,
user on samba,
user root ubuntu,
user samba ubuntu,
video konfigurasi samba ubuntu,
virtualbox host-only network,
web,
web mail server ubuntu 10,
web mail server ubuntu 10 subcribe,
web proxy mikrotik windows server,
web server di ubuntu,
web server ubuntu can not read from network,
wh,
which folder should i install software on linux,
windows "map network drive" ubuntu shared folder,
windows 2008 server sebagai klien,
windows 7 open samba linux,
windows 7 setting printer,
windows cannot access the specified device, path or file you may not have the permissions to acces the item,
windows tidak mau buka program atau install program,
windows xp create user for sharing,
windows2008 "cifs vfs: server not responding",
workgroup edit,
ww,
xampp for ubuntu 10.04 download,
youtube cara instal network sharing folder wizard,
youtube cara share printer pada windows 7,
youtube konfigurasi webmail di ubuntu,
youtube sharing data windows 7 ke windows server 2003
Facebook Comments