linux poison RSS
linux poison Email
0

atunes - iTunes/Winamp/Amarok killer


aTunes is a full-featured audio player and manager, developed in Java programming language, so it can be executed on different platforms: Windows, Linux and Unix-like systems, ...

Currently plays mp3, ogg, wma, wav, flac, mp4 and radio streaming, allowing users to easily edit tags, organize music and rip Audio CDs.

This media player uses the open source MPlayer engine and is built on Java, which means you can run it on pretty much any devices that supports Java. There's also a Windows installer which makes running aTunes on Windows.

Features:

* Supported formats: mp3, ogg, wma, wav, flac, mp4, ra, rm
* Online radio supported
* Player engine: mplayer
* Volume control, mute function
* Karaoke function
* Equalizer
* Shuffle and repeat options
* OSD (On-screen display)

More feature list
Download : here


Read more
0

How to install Microsoft Fonts in OpenSuse 11

Open and konsole or terminal

Now to to your home directory type “cd /home/Username/ and type the following commands to get and install Microsoft Fonts on your OpenSuse 11 box.

wget http://download.opensuse.org/update/10.3/scripts/fetchmsttfonts.sh
chmod a+x fetchmsttfonts.sh
sudo sh fetchmsttfonts.sh

Once installation is done, you may delete the file fetchmsttfonts.sh of your desktop.
Read more
57

List of best Linux blogs

There are lots of blogs in this list which are dead or non-functional, so I have created a fresh list version 2 - you can find it here 

If you got any blog which is worth mentioning here, do please let me know I will add it to the list.

Thanks
Author - Linuxpoison

UbuntuHQ Great site where you find a good collection of Ubuntu news, and posts, from other blogs.
ubuntublog Good Ubuntu blog, with lots of good Ubuntu stuff, sadly it stopped in September this year
PolishLinux This is a great Linux site, it has really good stuff, and great content
LinuxHelp Good site with great stuff, frequently updated.
UbuntuEssentials Frequently updated Ubuntu Site
Ubuntu-Unleashed Another good site with great stuff about Ubuntu Linux
HowToGeek Great How to site, not only for Linux but its Linux section is great!.
LinuxScrew good site which is coming real popular these days, with great articles.
Fsckin Frequently updated Linux site, great tutorials, and good posts about games for Linux.
ArsGeek Not only a Linux site, but with a great Linux section.
Ubuntu Geek All about Ubuntu, from a real Geek
BashCuresCancer Site devoted to command Line, unfortunately not too frequently updated
Phorolinux Really good tutorials about Linux.
http://www.linux-gamers.net/ For Linux games, how tos, forums, etc. about Video Cards, and Games.
http://www.madpenguin.org/cms/ Madpenguin, News, forums, about Linux
Ars Technica Open Ended section: http://arstechnica.com/journals/linux.ars
DesktopLinux: http://www.desktoplinux.com/
GNOME Footnotes: http://gnomedesktop.org/
Phoronix: http://www.phoronix.com/ (lots of good Linux stories)
http://www.debuntu.org Debuntu
http://tweako.com/section/ubuntu Tweako ubuntu
http://www.ubuntux.org Ubuntux
http://gaming.gwos.org Ubuntu Gamers Arena
http://freshubuntu.org/ Fresh ubuntu
http://www.markshuttleworth.com mark shuttleworth's blog
http://onlyubuntu.blogspot.com only ubuntu
http://ubuntuos.com ubuntu os
http://ubuntudemon.wordpress.com ubuntu demon
http://ubuntu.philipcasey.com ubuntu learner
http://xubuntu.wordpress.com xubuntu blog
http://www.ubustu.com/ the ubuntu feed
http://simplyubuntu.wordpress.com simply ubuntu
http://ubuntuliving.blogspot.com ubuntu living
http://allaboutubuntu.wordpress.com all about ubuntu
http://ubuntuheaven.blogspot.com ubuntu heaven
http://ubuntufan.wordpress.com ubuntu fan
http://ubuntulinux.or.id/blog/ id ubuntu blogs
http://ubuntology.com ubuntology
http://thedailyubuntu.blogspot.com/ the daily ubuntu
http://ubuntufs.wordpress.com ubuntu fs
http://ralph.n3rds.net ralph's ubuntu linux blog
http://www.ubufied.com ubufied
http://planet.gnome.org planet gnome [same as planet kde]
http://planetkde.org planet kde [links to TONS of other blogs]
http://happypenguin.org happy penguin linux gaming
http://www.nuxified.org nuxified
http://www.linuxreality.com linux reality podcasts
http://www.tuxmagazine.com tux online magazine
http://linux.byexamples.com linux by examples
http://www.fsckin.com fscking with linux
http://www.linux-watch.com linux watch
http://www.linuxtavern.com linux tavern
http://www.linuxwins.com linux wins
http://www.oreillynet.com oreilly network
http://linuxtracker.org linux tracker
http://lwn.net/ lwn
http://www.tuxme.com tuxme
http://pimpyourlinux.com pimp your linux
http://www.geekreviewed.com/ [geeky blog w/ linux category]
http://www.osdir.com os dir
http://blog.mandriva.com mandriva blog
http://kerneltrap.org kernel trap [linux kernel news]
http://www.linuxsecurity.com linux security news
http://fullcirclemagazine.org *buntu blog [3 major buntus]
http://boycottnovell.com boycottnovell
http://radio.linuxquestions.org linux questions
http://talkaboutlinux.com talk about linux
http://linuxondesktop.blogspot.com linux on desktop
http://www.jonobacon.org ubuntu/myth tv linux blog
http://kmandla.wordpress.com K.Mandla’s linux blog
http://joey.ubuntu-rocks.org/blog ubuntu rocks
http://fslog.com free software blog
http://thetuxproject.com the tux project
http://savvygeek.com savvy geek
http://bapoumba.wordpress.com a linux blog
http://linuxpoison.blogspot.com linux poison blog
http://lindesk.com
http://alinuxblog.wordpress.com

For Firefox wallpapers : here
Read more
0

How to block/allow packets sent by specific Operating System with iptables?

There is an iptables module named OSF (passive OS Fingerprinting) that was written by Evgeniy Polyakov. This module allows passively detect OS packet was sent from and perform various netfilter actions based on this match. Packets with SYN bit set are analyzed.

In order to install OSF module, do the following:

1. Download latest release from here, for example as follows:
wget http://tservice.net.ru/~s0mbre/archive/osf/osf-2008_06_14.tar.gz

2. Edit Makefile from unpacked archive in order to set proper path to iptables headers (iptables.h and libiptc/ dir).

3. If your kernel sources can not be accessed via /lib/modules/$(shell uname -r)/build, you have to replace KDIR variable with the correct path to kernel sources.
4. Run make that should build ipt_osf.ko kernel module.
5. Run make lib that will build libipt_osf.so shared library (copy it to where all other iptables shared libs are placed in your distro e.g. /lib/iptables or /lib64/iptables in Fedora).

6. Run make bin that will build userspace applications which allows to load fingerprints and obtain information about matched packets (load, osfd, ucon_osf).

7. Download signatures list:
wget http://www.openbsd.org/cgi-bin/cvsweb/src/etc/pf.os

8. Install kernel module:
insmod ./ipt_osf.ko

9. Load signatures:
./load ./pf.os /proc/sys/net/ipv4/osf

10. Set up iptables rules allowing/disallowing packets generated by certain OS:
iptables -I INPUT -j ACCEPT -p tcp -m osf --genre Linux --log 0 --ttl 2
This example allows traffic from Linux systems and logs packets from other ones:
ipt_osf: Windows [2000:SP3:Windows XP Pro SP1, 2000 SP3]: 11.22.33.55:4024 -> 11.22.33.44:139

BTW, OSF has following options:

* --log
If present, OSF will log determined genres even if they don't match desired one.
0 - log all matched and unknown entries.
1 - only first one.
2 - log all matched entries.
* --ttl
0 - true ip and fingerprint TTL comparison. Works for LAN.
1 - check if ip TTL is less than fingerprint one. Works for global addresses.
2 - do not compare TTL at all. Allows to detect NMAP, but can produce false results.
* --connector
If present, OSF will log all events also through netlink connector(1.0 id).
More about connector can be found in Documentation/connector in kernel source tree.


Read more
1

Domain Masquerading in Sendmail

Suppose you have a domain (test.com) on which your sendmail is running and you want to send out the mails from this server with domain (other.com) — (This is a very simple example to doing spamming)

In such a scenario, sendmail can be configured to masquerade the domain name (From test.com to other.com), effectively.

Before changing the default sendmail configuration, the Sendmail Configuration Files and the M4 macro processor must be installed. M4 reads the sendmail.mc file and produces the sendmail.cf configuration file read by the sendmail application.

Next, we need to modify the sendmail.mc file, located in /etc/mail. We’re mainly concerned with the MASQUERADE_AS, masquerade_envelope and masquerade_entire_domain lines. These lines will be prefixed with delete through newline (dnl) statements. Delete dnl from the beginning of

dnl MASQUERADE_AS(`other.com’)
dnl, FEATURE(masquerade_envelope)
dnl and FEATURE(masquerade_entire_domain)

Change the MASQUERADE_AS line to reflect the domain name (other.com) that the from address should display (domain of outgoing mail).

Now any user which send the mail with address username@test.com will have username@other.com as a display name going out from this sendmail.
Read more
Related Posts with Thumbnails