Monday, December 31, 2012
AgiliaLinux 8.1.1
AgiliaLinux 8.1.1 has been released. AgiliaLinux is a Russian Slackware-derived distribution with a custom, dependency-resolving package manager and support for several pre-configured desktop environments. Changes in this release include: fixed problems with dBUS in Openbox causing nm-applet to work incorrectly; fixed dcron - now it creates pid-file and rc-service crond restart works correctly; fixed the PHP build on x86_64 architecture; fixed calculation of required space during installation; added phonon-gstreamer to KDE without which there were problems with sound; support for fbdev video driver and modesetting in live mode; fixed a problem with hostname and NetworkManager; fixed problem with "grey faces" in YouTube and updated libvdpau to 0.5; Firefox now uses the default system language, not English; the mpkg package manager now always uses "safe" mode to update packages; updated Linux kernel to 3.6.11, Qt to 4.8.4 and KDE to 4.9.4.... Read the release announcement (in Russian) for a full list of bug fixes and other changes. Download: AgiliaLinux-8.1.1-x86.iso (3,011MB, MD5), Agilialinux-8.1.1-x86_64.iso (3,108MB, MD5).
Sunday, December 30, 2012
Drawers 12.12.2 Brings Improved Loading Speed for Large Drawers - Ubuntu 13.04/12.10/12.04
Drawers has been updated recently to version 12.12.2 bringing more new features and fixes. Drawers is an application that allows Ubuntu users to organize items in the Unity launcher by creating drawers (stacks) into which you can add and group your favorite programs, files/folders, and links with support of drag and drop.
The Drawer's window can also be customized via the Preferences menu:
New created drawers will be now added automatically to the Unity launcher, no need to do that manually. Here are the complete new features and changes in Drawers 12.12.2:
- New Item Properties Editor Dialog (allows icon selection)
- Quicklists for alternate execution of Drawer Items
- - Will import from newly added applications
- - Alternates can be added in Edit Properties dialog
- New Drawers are added to Unity Launcher Bar automatically
- - Preference dialog appears first to allow icon changes
- - Thanks to Bernhard Kaindl for code
- Color and Font Changes take effect immediately on closing preferences
- Improved loading speed for large drawers
- Locale support for application names
- New Translations added (German & Russian)
Drawers 12.12.2 Installation
To install Drawers 12.12.2 from PPA in Ubuntu 13.04/12.10/12.04, enter these commands:
sudo add-apt-repository ppa:ian-berke/ppa-drawers
sudo apt-get update
sudo apt-get install drawersSearch and open Drawers from the Unity Dash to start creating new stacks.
Drawers Removal
To uninstall Drawers from Ubuntu, enter these commands:
sudo apt-get remove drawers
sudo add-apt-repository --remove ppa:ian-berke/ppa-drawers
sudo apt-get update
20 Useful Terminal Commands and Tools that you May Need in Ubuntu/Linux Mint
Terminal is a text-based interface that grants users direct access to the UNIX system. You can use Terminal to run some specific commands, create files/folders, change system settings, and any other features that aren't available via programs with GUI.
In this article, I have collected 20 tools and commands that can be useful for Ubuntu/Linux Mint users. If you have more interesting commands or tools, you can mention them below.
1. Make An ISO From A Folder
If you want to make an iso file from a directory containing other files and sub-directories via the terminal, you can use the following command:
mkisofs -o image.iso -R /path/to/folder/
If you wish to backup the home folder, use this command:
mkisofs -o image.iso -R $HOME
2. Remove Non-Empty Folder
To remove a non-empty folder from the command line, you can use this command:
rm -rf /path/to/folder/
3. Checking Current CPU Architecture (32-bit or 64-bit)
To list your processor architecture in Ubuntu/Linux Mint, use one of these commands:
uname -m
or
arch
or
file /bin/bash | cut -d' ' -f3
4. Generate Random Passwords
To generate random passwords via the terminal, you can use the following commands:
a - makepasswd
makepasswd is a command line tool for generating passwords in Ubuntu/Linux Mint. Install it with this command:
sudo apt-get install makepasswd
To generate a password with 20 characters, enter this command:
makepasswd --chars=20
b- OpenSSL
You can also use OpenSSL to generate random passwords using this simple command:
openssl rand -base64 20
5. Check Uptime
To check for how long your computer or laptop has been running since you powered it on, issue this command:
uptime
To monitor system uptime in real-time, use this command:
watch -n 1 uptime
6. Check Information About Your Video Card
To list information about your graphics card (Nvidia, AMD, Intel, etc.), enter this command:
lspci -v -s `lspci | awk '/VGA/{print $1}'`
7. Download And Extract Tar Files In One Command
If you want to extract an archive file after being downloaded in a single command, you can use the following command for tar files:
wget URL-To-TAR-File -O - | tar xfz -
Here is an example:
wget http://garr.dl.sourceforge.net/project/multibootusb/MultiBootUSB_4.7.tar.gz -O - | tar xfz -
8. Block/Unblock Wifi/Bluetooth
To disable wifi or Bluetooth in Ubuntu/Linux Mint, we can simply use the rfkill command line tool. To deactivate wifi, enter this command:
rfkill block wlan
For Bluetooth:
rfkill block bluetooth
To unblock WiFi, enter this command:
rfkill unblock wlan
For Bluetooth:
rfkill unblock bluetooth
9. Check CPU Temperature
To get the current temperature of your processor, issue this command:
acpi -t
To check CPU temp in real-time, run this command:
watch -n 1 acpi -t
10. Change Read Speed Of A CD/DVD
Let's first get the maximum read speed of your optical drive with this command:
eject -X
To increase/decrease read speed of a CD/DVD inserted into your optical drive, enter this command followed by the desired speed:
eject -x 4
For more than one optical disc drive, use this command:
eject /dev/cdrom -x 4
11. Check RAM Speed
To check memory speed from the command line, run this command:
sudo dmidecode -t 17 | awk -F":" '/Speed/ { print $2 }'
12. Read/Write Speed Of A Hard Disk
To check read/write speed of your hard drive on the terminal, use this command:
sudo hdparm -tT /dev/sda
13. Monitor Network Usage
IPTraf is a command line utility that allows to monitor network activities in real-time. Install it in Ubuntu/Linux Mint with this command:
sudo apt-get install iptraf
Start monitoring using this command:
sudo iptraf
14- Downloading Websites
If you want to download an entire website via the terminal, enter this command:
wget --recursive --page-requisites --convert-links www.domain.com
15. Check Gmail Unread Messages
To check for unread messages in your Gmail account, use this command:
curl -u GMAILUSER --silent "https://mail.google.com/mail/feed/atom" | perl -ne 'print "\t" if //; print "$2\n" if /<(title|name)>(.*)<\/\1>/;'
16. Monitor HDD Temperature
Use hddtemp to monitor hard disk temperature on the terminal. Run these commands:
sudo apt-get install hddtemp
sudo hddtemp /dev/sda
17. Force Kill Apps
To force close an unresponsive software, run xkill from the terminal then click the software's window to close it.
18. Screen Recording
To capture your screen and record it in a video, use ffmpeg:
sudo apt-get install ffmpeg
ffmpeg -f x11grab -s wxga -r 25 -i :0.0 -sameq output.mpg
19. Check Current Kernel Version
You can simply use this command:
uname -r
20. Dtrx
The dtrx tool allows to extract most archive files without the hassle of memorizing the various extraction commands. To install it, run this command:
sudo apt-get install dtrx
Here are some examples:
dtrx file.zip
dtrx file.tar.gz
dtrx file.7z
Etichete:
Linux,
Linux Mint,
Terminal,
Tools
Snowlinux 4 RC
Lars Torben Kremer has announced that the release candidate for Snowlinux 4, a Debian-based desktop Linux distribution with MATE, is now ready for testing: "The team is proud to announce the release of Snowlinux 4 'Glacier'. Snowlinux 4 is based upon Debian GNU/Linux 7.0 'Wheezy' and uses Linux kernel 3.5. MATE 1.4 is the default desktop environment and LightDM as the new default login manager that replaces GDM 3. Many new features were introduced, like snowMenu, the Snowlinux menu and snowMount, the Snowlinux mount tool for drives. The Snowlinux Metal theme was colored blue and the icon set was updated with the latest Faience icons. Snowlinux now uses Pidgin as the default IM client. This release comes with Firefox 17 and Thunderbird 17, LibreOffice, Rhythmbox and Shotwell." See the release announcement for more details and a screenshot. Download links (MD5): snowlinux-4-glacier-i386-rc.iso (980MB), snowlinux-4-glacier-amd64-rc.iso (1,008MB).
Etichete:
Debian,
LibreOffice,
Linux,
Mate
Saturday, December 29, 2012
Calculate Linux 13
Alexander Tratsevskiy has announced the release of Calculate Linux 13, a Gentoo-based distribution for desktops and servers: "We are proud to announce the final release of Calculate Linux 13. Main changes and fixes: meta-packages are no longer used to manage default dependencies; Portage files will be unpacked when booting for the first time; better identification of NTFS partitions; fixed the user profile configuration for VMware; Composite enabled by default for VMware; should you want to replace main applications, their launch icons will be created correctly; in case the user modified the local Portage overlay repositories, those can now be restored; Calculate Utilities were updated to 3.1; full French translation now available...." Read the rest of the release announcement for a full list of changes. Get your preferred edition from the distribution's mirrors or download the default "KDE" variants from here: cld-13-i686.iso (2,016MB, MD5, torrent), x86_64/cld-13-x86_64.iso (2,233MB, MD5, torrent).
Subscribe to:
Posts (Atom)





