We can use the "calc" program to surf the web:
Open calc:
1- Menu help - > help topics
2 - Alt+space
3 - "Jump to URL"
There, just put your url, and surf !
I've seen this on hak.5 great site :)
Sunday, June 29, 2008
Thursday, June 26, 2008
Windows 2003 utilitys
Some commands that are very useful:
diskpart - disk partition
dnslint - dns test / report
nslookup - dns test - interactive
nltest - test - domain / trusts
netsh - net "shell" -
netsh firewall show config - show windows firewall configuration
dcdiag - test dc's
netdiag - test network / dc's
ntdsutil - ad utility
To show last replication summary - 0 errors = Good
repadmin /replsum /bysrc /bydest /sort:delta
To show AD Roles, FSMO - Flexible single master operations
netdom query FSMO
To show last replications:
repadmin /showrepl
diskpart - disk partition
dnslint - dns test / report
nslookup - dns test - interactive
nltest - test - domain / trusts
netsh - net "shell" -
netsh firewall show config - show windows firewall configuration
dcdiag - test dc's
netdiag - test network / dc's
ntdsutil - ad utility
To show last replication summary - 0 errors = Good
repadmin /replsum /bysrc /bydest /sort:delta
To show AD Roles, FSMO - Flexible single master operations
netdom query FSMO
To show last replications:
repadmin /showrepl
Wednesday, May 14, 2008
Linux Tip - Burn cd's
-- Create an .iso:
#umount /dev/cdrom
#dd if=/dev/cdrom of=filename.iso bs=1024
-- Create .iso image file form a "dir":
#mkisofs -r -J -o file.iso /location_of_folder/
-r generates Rock Ridge long names for Linux
-J generates Joliet long names for Windows
-- Mount .iso file without having to burn:
#mkdir /media/iso
#modprobe loop
#mount cdrom.iso /media/iso/ -t iso9660 -o loop
-- To "burn" an .iso to cd:
#cdrecord dev=/dev/cdrom driveropts=burnfree -v -data cd_image.iso
To burn an audio cd from wav files:
#cdrecord dev=/dev/cdrom driveropts=burnfree -v -audio [wav files...]
Replace /dev/cdrom as needed if this is not your CD-Writer
-v (verbose) lets you track the recording progress
driveropts=burnfree helps reduce the risk of a buffer under-run (most drives should support this)
#umount /dev/cdrom
#dd if=/dev/cdrom of=filename.iso bs=1024
-- Create .iso image file form a "dir":
#mkisofs -r -J -o file.iso /location_of_folder/
-r generates Rock Ridge long names for Linux
-J generates Joliet long names for Windows
-- Mount .iso file without having to burn:
#mkdir /media/iso
#modprobe loop
#mount cdrom.iso /media/iso/ -t iso9660 -o loop
-- To "burn" an .iso to cd:
#cdrecord dev=/dev/cdrom driveropts=burnfree -v -data cd_image.iso
To burn an audio cd from wav files:
#cdrecord dev=/dev/cdrom driveropts=burnfree -v -audio [wav files...]
Replace /dev/cdrom as needed if this is not your CD-Writer
-v (verbose) lets you track the recording progress
driveropts=burnfree helps reduce the risk of a buffer under-run (most drives should support this)
Set Time - Win2003
- To set the time in a Windows 2003 server you can use the w32tm command
- w32tm /?
- w32tm /config /manualpeerlist:10.1.1.1 /syncfromflags:MANUAL
- net stop w32time
- net start w32time
- w32tm /resync
And that's it, now you will have your server setting the time from the ip:10.1.1.1
- w32tm /?
- w32tm /config /manualpeerlist:10.1.1.1 /syncfromflags:MANUAL
- net stop w32time
- net start w32time
- w32tm /resync
And that's it, now you will have your server setting the time from the ip:10.1.1.1
Subscribe to:
Posts (Atom)