linux poison RSS
linux poison Email
0

Howto Install Wine in Ubuntu

Add the winehq repository : Open up a terminal Applications->Accessories->Terminal
Add the gpg apt key: wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -

Add the Repository via wget:
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/hardy.list -O /etc/apt/sources.list.d/winehq.list


Update the apt sources and install the latest wine!

sudo apt-get update ; sudo apt-get install wine

Done, now you have the latest wine package installed!
Read more
0

Network Scanner - Abyss

Abyss is a diverse network tool designed for unix/linux with both active, and passive capabilities. It performs various types of portscans, with remote OS detection, and uses a multi-threaded model for fast simultaneous network
scans

Abyss also has sniffing capabilities based on complex BPF filters that display packet information, decode the payload, and perform passive OS detection.

AbysS Compiles on Linux, and FreeBSD. It is POSIX compliant, and should work on other unix varients running on x86.

1. Download from here
2. Unpack the tar ball - tar zxvf abyss-0.9.15-pre-release.tgz
3. Compile - type make

The README-NOW file is very descriptive, and should give full instructions
on using AbysS

Example:
Scan all the live hosts on a 30 node LAN

./abyss -p target.net/27 192.168.1.2 -o iplist
./abyss -f iplist


Passive OS Detection, while also sniffing payload and packets from all tcp traffic

./abyss -O eth0 -b tcp -h -o logfile


Sniff ftp usernames, and passwords

./abyss -O eth0 -b tcp and dst port 21 -h -o logfile


Read more
2

Search And Replace Text in files Recursively

Search And Replace Text in files Recursively
regexxer is a nifty GUI search/replace tool featuring Perl-style regular expressions. If you need project-wide substitution and you’re tired of hacking sed command lines together, then you should definitely give it a try.
Read more
3

A Password Recovery Tool for PDF-files

A Password Recovery Tool for PDF-files
PDFCrack is a GNU/Linux (other POSIX-compatible systems should work too) tool for recovering passwords and content from PDF-files. It is small, command line driven without external dependencies. The application is Open Source (GPL).

Features:

* Supports the standard security handler (revision 2 and 3) on all known PDF-versions
* Supports cracking both owner and userpasswords
* Both wordlists and bruteforcing the password is supported
* Simple permutations (currently only trying first character as Upper Case)
* Save/Load a running job
* Simple benchmarking
* Optimised search for owner-password when user-password is known

Install pdfcrack in Ubuntu

sudo aptitude install pdfcrack

pdfcrack Syntax

pdfcrack -f filename [options]

pdfcrack Example

pdfcrack suck.pdf


Read more
0

Migrating to ext4

Migrating to ext4
Ext4 is the latest in a long line of Linux® file systems, and it's likely to be as important and popular as its predecessors. As a Linux system administrator, you should be aware of the advantages, disadvantages, and basic steps for migrating to ext4. This article explains when to adopt ext4, how to adapt traditional file system maintenance tool usage to ext4, and how to get the most out of the file system.
Current and upcoming features of ext4 that provide advantages over ext3

Feature
Advantage
Larger file systems
Ext3 tops out at 32 tebibyte (TiB) file systems and 2 TiB files, but practical limits may be lower than this depending on your architecture and system settings—perhaps as low as 2 TiB file systems and 16 gibibyte (GiB) files. Ext4, by contrast, permits file systems of up to 1024 pebibyte (PiB), or 1 exbibyte (EiB), and files of up to 16 TiB. This may not be important (yet!) for the average desktop computer or server, but it is important to users with large disk arrays.
Extents
An extent is a way to improve the efficiency of on-disk file descriptors, reducing deletion times for large files, among other things.
Persistent preallocation
If an application needs to allocate disk space before actually using it, most file systems do so by writing 0s to the not-yet-used disk space. Ext4 permits preallocation without doing this, which can improve the performance of some database and multimedia tools.
Delayed allocation
Ext4 can delay allocating disk space until the last moment, which can improve performance.
More subdirectories
If you've ever felt constrained by the fact that a directory can only hold 32,000 subdirectories in ext3, you'll be relieved to know that this limit has been eliminated in ext4.
Journal checksums
Ext4 adds a checksum to the journal data, which improves reliability and performance.
Online defragmentation
Although ext3 isn't prone to excessive fragmentation, files stored on it are likely to become at least a little fragmented. Ext4 adds support for online defragmentation, which should improve overall performance.
Undelete
Although it hasn't been implemented yet, ext4 may support undelete, which, of course, is handy whenever somebody accidentally deletes a file.
Faster file system checks
Ext4 adds data structures that permit fsck to skip unused parts of the disk in its checks, thus speeding up file system checks.
Nanosecond timestamps
Most file systems, including ext3, include timestamp data that is accurate to a second. Ext4 extends the accuracy of this data to a nanosecond. Some sources also indicate that the ext4 timestamps support dates through April 25, 2514, versus January 18, 2038, for ext3.

Read More ...
Read more
Related Posts with Thumbnails