ponedjeljak, 21. studenoga 2011.

Protect Ubuntu from Fork Bombs


In computing, the fork bomb is a form of denial-of-service attack against a computer system which makes use of the fork operation (or equivalent functionality) whereby a running process can create another running process.
A fork bomb works by creating a large number of processes very quickly in order to saturate the available space in the list of processes kept by the computer's operating system. If the process table becomes saturated, no new programs may start until another process terminates.
the following example may look innocent, but running it on an unprotected system may take the whole system down:
Do not run this code on an unprotected system!
$ :(){ :|:& }; :

The above shell script will actually keep forking at an exponential rate until system resources are exhausted.
To protect a system against such attacks, there is a file for limiting the number of processes per user. It is /etc/security/limits.conf. Add the following two lines to it:

*            hard       nproc                    20
user       hard       nproc                   300
or
@users          soft       nproc                  100
@users          hard       nproc                  150
 

These lines prevent anyone in the users group from having more than 150 processes, and issue a warning at 100 processes.
Your system may not have a users group, so you may want to edit the lines to match your needs.

utorak, 15. studenoga 2011.

LuckyBackup

LuckyBackup

... a powerful, fast and reliable backup & sync tool.
schedule, manage backup/sync, restore procedures, and much more...



luckyBackup is an application for data back-up and synchronization powered by the rsync tool.

It is simple to use, fast (transfers over only changes made and not all data), safe (keeps your data safe by checking all declared directories before proceeding in any data manipulation ), reliable and fully customizable.

http://luckybackup.sourceforge.net/index.html

Install;

Alt+F2 > Terminal

$ sudo apt-get install luckybackup

ponedjeljak, 14. studenoga 2011.

Boot-Repair

Boot-Repair is a small graphical tool to restore access to Ubuntu and other OS (Windows..).
One "Recommended repair" button to repair most frequent boot problems. (generally repair filesystems and reinstall Grub2)

Another button to create a Boot-Info-Script summary in 1 click

Options to reinstall Grub2 easily (OS by default, purge, unhide, kernel options..), and other advanced options (MBR restore...).

Boot-Repair is a free software, licensed under GNU-GPL. Boot-Repair is not officially supported by Canonical, use it at your own risks.



ALT+F2 > Terminal or Terminator

$ sudo add-apt-repository ppa:yannubuntu/boot-repair
$ sudo apt-get update
$ sudo apt-get install -y boot-repair && boot-repair

ALT+F2 > boot-repair

utorak, 15. veljače 2011.

Home The Mnemosyne Project - your learning process

----------------------------------------------------------

Memory research

While you use the software, detailed statistics can be kept on your learning process. If you want, these logs can be uploaded in a transparent and anonymous way to a central server for analysis. 

---------------------------------------------------------- 

Download:

http://www.mnemosyne-proj.org/download-mnemosyne.php

---------------------------------------------------------- 

Ubuntu install:

Applications > Accessories > Terminal or Ctrl+Alt+T

$ sudo apt-get install mnemosyne

---------------------------------------------------------- 

srijeda, 9. veljače 2011.

BIOS settings with dmdeicode and biosdecode

-----------------------------------------------------------------------

Applications > Accessories > Terminal or Ctrl+Alt+T

$ sudo dmidecode
$ sudo biosdecode



http://unixlab.blogspot.com/2011/02/watch-your-bios-settings-with-dmicode.html

-----------------------------------------------------------------------

četvrtak, 3. veljače 2011.

Zeitgeist Moving Forward 2011

Zeitgeist Moving Forward


------------------------------------------
------------------------------------------

http://thepiratebay.org/torrent/6146597/Zeitgeist_Moving_Forward_XviD-TehDiNGO

http://torrents.thepiratebay.org/6146597/Zeitgeist_Moving_Forward_XviD-TehDiNGO.6146597.TPB.torrent

Source: DVDRip
Size: 1.07 GB
Genre: Documentary
Video: 848x480 | 799 kbps
Audio: English | MP3 | 128 kbps
Subs: NA
IMDB Rating: 9.1/10
RT Critics: NA
Directed By: Peter Joseph

------------------------------------------
------------------------------------------

http://thepiratebay.org/torrent/6142995/Zeitgeist_Moving_Forward_(2011)_DVDRip_XviD-P2P

http://torrents.thepiratebay.org/6142995/Zeitgeist_Moving_Forward_(2011)_DVDRip_XviD-P2P.6142995.TPB.torrent

Video
Length 2:41:25
Frame Width: 852
Frame Height: 480
Data Rate: 2507 kbps
Total Bitrate: 2635 kbps
Frame Rate: 29 Frames/Second

------------------------------------------
------------------------------------------

Hrvatski titl za Zeitgeist Moving Forward

http://titlovi.com/downloads/default.ashx?type=1&mediaid=118020

http://titlovi.com/downloads/default.ashx?type=1&mediaid=117820

------------------------------------------
------------------------------------------

utorak, 1. veljače 2011.

Double Commander

-------------------------------------------------
Double Commander is a cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas.

Double Commander




http://doublecmd.sourceforge.net/

Applications > Accessories > Terminal   or   Ctrl+Alt+T   ;

$ sudo add-apt-repository ppa:alexx2000/doublecmd
$ sudo apt-get update
$ sudo apt-get install doublecmd-gtk

for Gnome;
$ sudo apt-get install doublecmd-gtk

for KDE;
$ sudo apt-get install doublecmd-qt
-------------------------------------------------