Search found 127 matches

by Chris
Sat Nov 20, 2010 2:27 pm
Forum: Windows
Topic: Solved:How to change the default autorun policies in windows
Replies: 2
Views: 22803

Re: How do i change the default autorun policies in windows?

Hi, It depends on which version of Windows you are using: Windows XP Disable through Windows Explorer Open My Computer or Explorer Right-click the CD-ROM drive or other drive and click Properties. Click the AutoPlay tab. Within this section you will be able to specify all Windows AutoPlay features W...
by Chris
Wed Aug 04, 2010 5:19 am
Forum: Linux
Topic: Solved: Symbolic links in Samba
Replies: 2
Views: 8557

Re: Symbolic links in Samba

After some searching I found the solution.

You need to add the following lines in smb.conf
under [global] (Not [share])

Code: Select all

  follow symlinks = yes
  wide links = yes
  unix extensions = no
It seams that in the latest version it has been disabled as default,
because it is considered a security risk.
by Chris
Wed Jul 07, 2010 9:36 pm
Forum: Linux
Topic: forward ports in iptables
Replies: 1
Views: 6952

Re: forward ports in iptables

You can easily create a forward port with the following command: iptables -t nat -A PREROUTING -p tcp --dport 8080 -i eth0 -j DNAT --to 192.168.1.1:80 The following command list all the forward rules the iptables -t nat -L PREROUTING -n --line-numbers This command delete the second rule: iptables -D...
by Chris
Mon Jun 28, 2010 5:47 am
Forum: General
Topic: Could you help me in my question....
Replies: 1
Views: 21268

Re: Could you help me in my question....

Click on the users name
and the on PM (Send private message)

The private message page is opened
and you can enter your message.
by Chris
Fri May 21, 2010 6:44 pm
Forum: Linux
Topic: Solved: how to get a list of forward rules in iptables
Replies: 3
Views: 9516

Re: how to get a list of forward rules in iptables

Well,

Code: Select all

iptables --list FORWARD
Should give you all the forward rules.

You can also try:

Code: Select all

iptables-save > iptables_file.txt
This puts all the rules and the commands one by one in iptables_file.txt.

I hope this helps.
by Chris
Wed May 05, 2010 7:05 pm
Forum: Linux
Topic: How do I create a SHA filecheck-file
Replies: 1
Views: 7353

Re: How do I create a SHA filecheck-file

sfv = Simple File Verify format file It uses crc32 checksums instead of MD5 checksums. I think your are mixing 2 things. MD5 and SHA are also used to hash password, and there have been found some weakness in it. But for file verification it should be good enough. You can use the linux program cfv To...
by Chris
Mon Apr 19, 2010 12:34 pm
Forum: General
Topic: Why can't I copy files larger then 4GB
Replies: 1
Views: 19656

Re: Why can't I copy files larger then 4GB

This is probably because your usb-drive is formatted as FAT32. Most usb-drives and external hard drives are formatted in FAT32, so they are supported by most operating systems. The max file size for FAT32 is 4GB (minus 1 byte). I want to write bigger files you need to reformat it. NTFS if you use wi...
by Chris
Sat Mar 20, 2010 7:55 pm
Forum: General
Topic: My computer properties have changed!!!!!?
Replies: 1
Views: 20651

Re: My computer properties have changed!!!!!?

Take a look at:
Security packs

They have Anti-virus, Firewall, Anti-spam and anti-spyware in 1 package.

I like AVG, but any of the other packs are also good.
by Chris
Mon Jan 18, 2010 6:39 pm
Forum: Linux
Topic: Solved: run script on startup
Replies: 4
Views: 11759

Re: run script on startup

To start a script at boot in ubuntu, you can add a line in /etc/rc.local You can also create a service, but that perhaps overkill. The quick and dirty way to create a service: 1- create a file under init.d : sudo nano /etc/init.d/new_script 2- put your command lines/script in the file & save it ...
by Chris
Sat Jan 16, 2010 7:35 pm
Forum: Linux
Topic: Solved: run script on startup
Replies: 4
Views: 11759

Re: run script on startup

On my gentoo box I use

Code: Select all

/etc/conf.d/local.start
Local should run on start up by default and executes as the last thing.

Just add a line with the command to execute,
or the path to the script to execute.