Search found 129 matches

by Chris
Tue Feb 08, 2011 4:38 pm
Forum: Linux
Topic: Solved: Check a ntfs file system in linux
Replies: 3
Views: 43420

Re: Check an ntfs file system in linux

I did found a program that might work: ntfsfix .
Desription:
ntfsfix is a utility that fixes some common NTFS problems. ntfsfix is NOT a Linux version of chkdsk. It only repairs some fundamental
NTFS inconsistencies, resets the NTFS journal file and schedules an NTFS consistency check for the ...
by Chris
Mon Feb 07, 2011 11:48 pm
Forum: Linux
Topic: Solved: Check a ntfs file system in linux
Replies: 3
Views: 43420

Re: Check an ntfs file system in linux

As far as I know, it isn't supported yet.

Best is to connect your disk to Windows system and do the check.
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: 120001

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 ...
by Chris
Wed Aug 04, 2010 5:19 am
Forum: Linux
Topic: Solved: Symbolic links in Samba
Replies: 2
Views: 36041

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: 29780

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 ...
by Chris
Mon Jun 28, 2010 5:47 am
Forum: General
Topic: Could you help me in my question....
Replies: 1
Views: 100033

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: 41856

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: 27922

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 ...
by Chris
Mon Apr 19, 2010 12:34 pm
Forum: General
Topic: Why can't I copy files larger then 4GB
Replies: 1
Views: 105394

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 ...
by Chris
Sat Mar 20, 2010 7:55 pm
Forum: General
Topic: My computer properties have changed!!!!!?
Replies: 1
Views: 105439

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.