On Monday May 19 2008 09:27:21 DachaArh wrote: > i tried to do what is on that page : > I tried this : > > Code: > $ sudo sysctl -w vm.mmap_min_addr=0 > > > but my terminal says : > bash: $: command not found This is expected: there is no such command as "$". "$" means you should run following command as a user (or if you see "#" instead of "$" then you should run it as root or with "sudo"). For example as ordinary user run: sudo sysctl -w vm.mmap_min_addr=0 It should work.