Posts Tagged ‘file’

15
Oct

Samba Configuration

   Posted by: Vlad    in Linux

Samba provides file and print services for various Microsoft Windows clients and runs on most Unix and Unix-like systems, such as Linux, Solaris, AIX and the BSD variants, including Apple’s Mac OS X Server.

Samba is an implementation of dozens of services and a dozen protocols, including NetBIOS over TCP/IP (NBT), SMB, CIFS (an enhanced version of SMB), DCE/RPC or more specifically, MSRPC, the Network Neighborhood suite of protocols, a WINS server also known as a NetBIOS Name Server (NBNS), the NT Domain suite of protocols which includes NT Domain Logons, Secure Accounts Manager (SAM) database, Local Security Authority (LSA) service, NT-style printing service (SPOOLSS), NTLM and more recently Active Directory Logon which involves a modified version of Kerberos and a modified version of LDAP. All these services and protocols are frequently incorrectly referred to as just NetBIOS or SMB. Samba can also see and share printers. Read the rest of this entry »

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

25
Jul

Save virtual machine on NTFS drives

   Posted by: Vlad    in Linux

I usually dual boot my PC with Windows and Linux. For the moment I still heavily use Windows so most of my information is stored on NTFS drives. My linux ext3 partition is only 10 GB wich is more than enough. But I recently installed VMware server on Ubuntu Hardy Heron, and obviously I was forced to save my virtual machines on one of the larger windows partitions. That was o problem for my system, because everything I did I couldn’t PowerOn the virtual machine, with the following error message: “Unable to connect to the MKS: Pipe: Read failed.” After a lot of searching I found this solution. Edit as root the main .vmx file and add this line:

mainMem.useNamedFile=FALSE

Save it and you are ready to use your virtual machine.

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

25
Jun

Simple copy through SSH

   Posted by: Vlad    in Linux

Copying files between remote machines can be easily done
using SCP command.

The syntax is:

copy from a remote machine to my machine:

scp user@192.168.0.1:/home/file.txt /home/x.txt

copy from my machine to a remote machine:

scp /home/x.txt user@192.168.0.1:/home/x.txt

copy all x*.txt from a remote machine to my machine (x01.txt, x02.txt, etc.)

scp “user@192.168.0.1:/home/x*.txt” /home/x.txt

copy a directory from a remote machine to my machine:

scp -r user@192.168.0.1:/home/folder /home/

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

21
May

Command Window in Vista Setup

   Posted by: Vlad    in Windows

If you found yourself in the position of needing something from the Vista installation disk, you can always raise a Command Prompt Window, and navigate to that location. For example you need the product key so you can copy - paste it rather than typing it by hand.

During the GUI phase of the installation you can press the SHIFT + F10 keys, and you will have yourself a Command Window. From this you can navigate to a text file, or run regedit.exe or any other executable Vista copied to the installation folder on the hard disk.

Thank you Daniel Petri, for this information.

Tags: , , , , , , , , , , , , , , , , , , , , , , ,