GnuPG ile
[root@localhost ~]# gpg -c sifrelenecek-dosya.txt
Enter passphrase:
Repeat passphrase:
Dosya uzantisi gpg olarak değişecektir.
Şifreyi çözmek için
[root@localhost ~]# gpg sifrelenecek-dosya.gpg
Enter passphrase:
linux server’de x ortamına gerek kalmadan konsoldan kurulum yapılabilir. qemu kuruluma başlarken vnc server’i çalıştırabilir. bu şekilde uzaktan vnc viewer ile baglanıp kurulum yapılabilir.
disk imaj dosyası oluşturuyoruz
#qemu-img create -f qcow windows/windows.qcow 2000M
#qemu -hda windows/windows.qcow -boot d -cdrom windows/Win2003-TUR.ISO -vnc :0
If you chose to edit the files manually, use the following steps:
- Edit Apache configuration files
- Connect to IPCOP via SSH using port 222
(on Windows connect using Putty[10] [see section 3.9 for more information on using Putty])
- Type ’cd /etc/httpd/conf’
- Type ’vi httpd.conf’
- Find and replace all instances of 445 (only two entries to change) with the port number you wish to use
- save and close httpd.conf
- restart apache (type: killall httpd and then httpd -DSSL)
- Change the port forwarding reserves
- Edit ’/home/httpd/cgi-bin/portfw.cgi’
- Find line that looks like this: my @tcp_reserved = (81,222,445);
change the 445 to the same port you changed above
- Save the changes
- Edit IPCOP header file
- Edit ’/var/ipcop/header.pl’
- Change the following to reflect your new port
|
### Make sure this is an SSL request
if ($ENV{’SERVER_ADDR’} && $ENV{’HTTPS’} ne ’on’) {
print ”Status: 302 Moved\r\n”;
print ”Location: https:#$ENV{’SERVER_ADDR’}:445/$ENV{’PATH_INFO’}\r\n\r\n”;
exit 0;
}
|