aminesoft, THE END :(

21 12 2009

aminesoft is down, my life it’s down

i am down , i go to army :(

i will be late for 25 years





GnoMenu 2.2 released! Install GnoMenu 2.2 in Ubuntu 9.10 via repository !

17 12 2009

Announced today the release of GnoMenu2.2, the new version comes with some new features and improvements , but the big improvement is that Gnomenu now takes 60% less Memory. If you diden`t hear before about GnoMenu, it is -

A consolidated menu for gnome that brings eye candy to the world of the Gnome menu’s. Fully functional menu , supports themes , for a composited or non composited desktop. It can emulate the look and feel of the most beautiful menus of most modern desktops, and it can also use custom menus, due to its powerful theme XML engine.

What`s new in GnomeMenu 2.2 :

- New theme lancelot, emulates the look of the kde lancelot menu
- added gmenu side by side with xdg menu
- support for XDG_MENU_PREFIX
- Improved gtk theming
- More translations
- New svg logo by Darkhaseo
- Improved speed
- No more flickering on vista like menus

Installation in Ubuntu9.10 karmic koala and Ubuntu 10.04 Lucid Lynx:

First add repository for ubuntu 9.10 karmic koala :

sudo add-apt-repository ppa:gnomenu-team/ppa
 

Now refresh using the command :

sudo apt-get update && sudo apt-get install gnomenu
 

For other linux distribution, you can download the GnoMenu from the link bellow :





Thunderbird 3.0 Final is available Now !

10 12 2009

Thunderbird 3.0 Final is available for download, the new version comes with new features and improvments, Thunderbird 3 changes the way you do email with tabbed email, and a new set of search tools helps you find your emails faster.

So, what`s new in Thunderbird3.0 ?

1- New features include :
New Search with Advanced Filtering Tools

  • New Search with Advanced Filtering Tools
  • New Global Search Field with Autocomplete

2- User Experience Improvements

  • New Mail Account Setup Wizard
  • Redesigned Mail Toolbar
  • Tabbed Email Messages
  • Smart Folders
  • New Message Summary View
  • Column Headings
  • Message Archive
  • Activity Manager
  • New Add-ons Manager
  • Improved Address Book
  • Improved Gmail Integration
  • For Mac users, Thunderbird 3 is now integrated with Spotlight, can import from Mail.app, read your OS X address book, and use Growl for new mail alerts.

3- Performance Improvements

  • IMAP Folder SynchronizationThunderbird will download IMAP messages by default in the background to allow for faster message loading and better offline operation. This feature can be enabled on an individual folder basis via Folder properties, or for all folders in an account via Account Settings / ‘Synchronize & Storage’.

See detailles features in this link

Download Mozilla Thunderbird 3.0 final for Linux :






Google chrome Beta for Linux is available Now !

10 12 2009

Google has released the beta version of Google chrome for Linux.

Acording to google blog :

Google Chrome for Linux (Beta)
At Google, most engineers use Linux machines, so we certainly heard loud and clear how much they wanted Google Chrome for Linux. Just like Google Chrome or Windows and Mac, we focused on speed, stability and security, but we also wanted a high-performance browser that integrated well with the Linux ecosystem. This includes tight integration with native GTK themes, updates that are managed by the standard system package manager, and many other features that fit in natively with the operating system where possible.

The actuall beta version is available for download from this link

And then open the .deb package

If you shoosed to save the package to the desktop,then use this command to install the package :

sudo dpkg -i google-chrome-beta_current_i386.deb

Extensions also are online now, you can got them from this link :

https://chrome.google.com/extensions





Reinstall Ubuntu From Command Line

4 12 2009

There is a very simple command that reinstalls all the distribution packages and reconfigures them automatically. This is particularly helpful when you have done a partial upgrade and eventually have broken the system dependencies tree.

sudo dpkg-reconfigure -phigh -a

since this command would take a lot of time to process (~1 hour) depending on your hardware in case you have a minor dependency problem you can fix it via

sudo apt-get install -f

Thanks to aldeby and unixmen for this command.





ISSUE 24 blenderart magazin

29 11 2009
ISSUE 24: From out of the deep
FEATURED CONTENTS

 

  • Articles/Tutorials on A Quick Little Whale
  • Tutorial of Realistic Water Environment
  • Making of Kaldewei
  • Making of Sea Anemone
  • vSwarm – An Open Distributed Render Farm
  • Now wheres the ‘Under Water Lighting button’?
  • & more…
DOWNLOADS
BLEND FILES
Download All Issues




Inkscape 0.47 Release !

25 11 2009

After over a year of intensive development and refactoring, Inkscape 0.47 is out. This version of the SVG-based vector graphics editor brings improved performance and tons of new features, some of which are as follows: timed autosave, Spiro splines, auto-smooth nodes, Eraser tool, new modes in Tweak tool, snapping options toolbar & greater snapping abilities, new live path effects (including Envelope), over 200 preset SVG filters, new Cairo-based PS and EPS export, spell checker, many new extensions, optimized SVG code options, and much more.

Additionally, it would be wrong to not mention the hundreds of bug fixes. Check out the full release notes for more information about what has changed, enjoy the screenshots, or just jump right to downloading your package for Windows, Linux or Mac OS X.





Install Samba server in Ubuntu Karmic 9.10

23 11 2009


P.S: NOW you can Subscribe to Am!NeS0Ft’s blog by Email
If you want to share files between your Ubuntu and Windows computers, your best option is to use Samba file sharing.

Samba is a free software re-implementation of SMB/CIFS networking protocol, originally developed by Australian Andrew Tridgell. As of version 3, Samba provides file and print services for various Microsoft Windows clients and

can integrate with a Windows Server domain, either as a Primary Domain Controller (PDC) or as a domain member. It can also be part of an Active Directory domain.Samba runs on most Unix and Unix-like systems, such as Linux, Solaris, AIX and the BSD variants, including Apple’s Mac OS X Server (which was added to the Mac OS X client in version 10.2). Samba is standard on nearly all distributions of Linux and is commonly included as a basic system service on other Unix-based operating systems as well. Samba is released under the GNU General Public License. The name Samba comes from SMB (Server Message Block), the name of the standard protocol used by the Microsoft Windows network file system.  (Wikipedia)

Lets  start then,

Install  samba  in  Ubuntu   can be  from Gui tool (Software  center  of  from command  line )

First we have to install sambe server, In  the termina type the command  :

sudo apt-get install samba smbfs

Now we  have  for  example  to  share  this directory  /share

lets make  a  configuration of  the samba  share :

#sudo vi /etc/samba/smb.conf
# /etc/samba/smb.conf
 #
 [global]
 security = USER
 hosts allow =

 [homes]
 comment = Home Directories
 browseable = no
 writable = yes

 [share]
 comment = Aminesoft File Server
 path = /share/
 force user = samba
 force group = samba
 read only = No
 hosts allow =

Explain  : every  user connected to this samba  server can connect directly to his /home/directory

First  add a user (For example: aminesoftuser to  the  system, in the terminal type the command :

#sudo  adduser  aminesoftuser
root@aminesoft-desktop:~# adduser aminesoftuser

Output
Adding user `aminesoftuser’ …
Adding new group `aminesoftuser’ (1003) …
Adding new user `aminesoftuser’ (1003) with group `aminesoftuser’ …
Creating home directory `/home/aminesoftuser’ …
Copying files from `/etc/skel’ …
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for aminesoftuser
Enter the new value, or press ENTER for the default
Full Name []:

now  make  a  samba  password  for  this user    with  :

smbpasswd  -a   aminesoftuser

Output

New SMB password:
Retype new SMB password:
Added user aminesoftuser.

Now  restart  your  samba  server

sudo /etc/init.d/samba   restart

Now if you have another computer with windows machine installed, test if it is working:

In your windows go to :

Start  —->   run    and insert   //ip or  //hostname

and

write your  login and  samba password
P.S: NOW you can Subscribe to Am!NeS0Ft’s blog by Email
Have Fan ;)





Metasploit Framework 3.3 Released!

19 11 2009

We are excited to announce the immediate availability of version 3.3 of the Metasploit Framework. This release includes 446 exploits, 216 auxiliary modules, and hundreds of payloads, including an in-memory VNC service and the Meterpreter. In addition, the Windows payloads now support NX, DEP, IPv6, and the Windows 7 platform. More than 180 bugs were fixed since last year’s release of version 3.2, making this one of the more well-tested releases yet.

FOR DOWNLOAD

framework-3.3-linux-i686.run

 

35,434,869 bytes (34M)
Linux 32-bit installer including all dependencies.

 

framework-3.3-linux-x86_64.run

 

36,635,297 bytes (35M)
Linux 64-bit installer including all dependencies.

 

framework-3.3.tar.bz2

 

22,614,595 bytes (22M)
Unix tar format for installing on all other operating systems.




Fedora12 is available for download in Torrent !

17 11 2009

While every Fedora fan enjoys the newly released Fedora 11 Linux-based operating system, the developers are working hard on the next release, Fedora 12, due for release in November-December 2009. Make sure you visit our website, starting with August 18th when the first alpha will be released, as we will do a full coverage of the Fedora 12 development process. Without any further introduction.

This is the official release schedule, but everyone knows that it might change in time, and the final version could be delayed a few weeks. For Fedora 12, the development team will prepare new and exciting features, such as:

· GNOME 2.28 desktop environment
· KDE 4.3 desktop environment
· PolicyKit
· IPv6 and system-wide connections support for NetworkManager
· liblvm (LVM userspace library)
· Empathy (Pidgin replacement)
· debuginfo filesystem
· Multiseat
· Dracut (mkinitrd/nash replacement)
· Systemtap Static Probes
· OpenOffice 3
· and many more!

About Fedora

The Fedora Project is a Red-Hat-sponsored and community-supported open-source project. It is also a proving ground for new technology that may eventually make its way into Red Hat products and it is not a supported product of Red Hat. The goal of The Fedora Project is to work with the Linux community in order to build a complete, general purpose operating system exclusively from free software.

You can read everything on details in this link

Fedora 12 is here!

The download is possible from this  links :

Fedora-12-i386-CDs.torrent
Fedora-12-i386-DVD.torrent
Fedora-12-i686-Live-KDE.torrent
Fedora-12-i686-Live.torrent
Fedora-12-ppc-CDs.torrent
Fedora-12-ppc-DVD.torrent
Fedora-12-source-CDs.torrent
Fedora-12-source-DVD.torrent
Fedora-12-x86_64-CDs.torrent
Fedora-12-x86_64-DVD.torrent
Fedora-12-x86_64-Live-KDE.torrent