http://www.binarytides.com/better-elementary-os-luna/
Monday, March 30, 2015
20 things to do after installing Elementary OS 0.2 Luna
http://www.binarytides.com/better-elementary-os-luna/
Posted by PNA Prasanna at 8:51 AM 0 comments
Labels: Elementary OS 0.2 Luna
Monday, March 23, 2015
How to install software or upgrade from an old unsupported release?
Posted by PNA Prasanna at 9:14 AM 0 comments
Labels: Linux Mint 7, Ubuntu 9.04
Create Wifi Hotspot in Ubuntu Laptop For Android Phones
#sudo add-apt-repository ppa:nilarimogard/webupd8
#sudo apt-get update
#sudo apt-get install ap-hotspot
First uninstall the buggy hostapd in Ubuntu 14.04 via:
#sudo apt-get remove hostapd
For 64-bit system:
#cd /tmp && wget http://archive.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_amd64.deb && sudo dpkg -i hostapd*.deb && sudo apt-mark hold hostapd
For 32-bit system:
#cd /tmp && wget http://archive.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_i386.deb && sudo dpkg -i hostapd*.deb && sudo apt-mark hold hostapd
Once installed, execute below command to configure your wifi hotspot:
#sudo ap-hotspot configure
Finally start the wireless hotspot via:
#sudo ap-hotspot start
To stop the wireless hotspot, execute this command in Ubuntu terminal:
#sudo ap-hotspot stop
Courtesy:
http://ubuntuhandbook.org/index.php/2014/02/wifi-hotspot-ubuntu-laptop-android/
Please report issues at: https://github.com/hotice/AP-Hotspot/
Posted by PNA Prasanna at 9:06 AM 0 comments
Friday, March 20, 2015
Find the inactive users for a particular period of time
for i in `sudo lastlog | grep -v 'pts' | awk -F ' ' '{print $1}'`; do sudo more /etc/passwd |grep /bin/bash |awk -F: '{print $1}' |grep $i; done
Posted by PNA Prasanna at 4:26 AM 0 comments
Labels: Drops
How to unlock the password of an user
eg: #passwd -u pnaprasanna
Posted by PNA Prasanna at 4:18 AM 0 comments
Labels: Drops
Wednesday, March 18, 2015
Disk usage check simple command
Posted by PNA Prasanna at 5:12 AM 0 comments
Labels: Linux Articles
How can I find the number of files and inodes on a file system?
Posted by PNA Prasanna at 5:07 AM 0 comments
Labels: Linux Articles
Slackware package manager - how to install applications
glibc
library, you can search for the
packages that contains it:sudo slackpkg file-search glibc
Looking for glibc in package list. Please wait... DONE
The list below shows the packages that contains "glibc" file.
[ installed ] - glibc-solibs-2.11.1-i486-3
[ installed ] - glibc-zoneinfo-2.11.1-noarch-3
[ installed ] - man-pages-3.24-noarch-1
[ installed ] - glibc-2.11.1-i486-3
[ installed ] - glibc-i18n-2.11.1-i486-3
[ installed ] - glibc-profile-2.11.1-i486-3
[uninstalled] - mutt-1.4.2.3-i486-1
You can search specific packages using "slackpkg search package".
slackpkg
, you may want to read slapt-get
FAQ, to better understand it.Posted by PNA Prasanna at 5:04 AM 0 comments
Labels: Linux Articles, Slackware
Installing security updates in Red Hat / CentOS
Posted by PNA Prasanna at 4:59 AM 0 comments
NFS permission denied problem (run this command)
check this permission as well
Posted by PNA Prasanna at 4:55 AM 0 comments
Labels: Linux Articles
RHEL 5 to RHEL 6 upgradation
Posted by PNA Prasanna at 4:52 AM 0 comments
Labels: Linux Articles
Ubuntu vs Redhat
2. Ubuntu uses the dpkg (Debian) package system while Red Hat uses RPM package manager.
3. Ubuntu primarily aims for better usability and has become exceedingly popular for desktop use. Red Hat, on the other hand, is marketed for enterprise use.
4. Red Hat is closely associated to Fedora, another popular type of Linux distribution.
5. Red Hat is made by Red Hat Inc which is founded by Young and Ewing while Ubuntu is headed by Shuttleworth, owner of Canonical Ltd.
6. Due to its differing packaging system, Ubuntu is expected to be more flexible and easier to implement.
Posted by PNA Prasanna at 4:45 AM 0 comments
Labels: Linux Articles
Ext2, Ext3 and Ext4 file system features
Features
|
Ext3
|
Ext4
|
Filesystem
limit
|
16TB
|
1EB (1
EB = 1024 PB, 1 PB = 1024 TB)
|
File
limit
|
2TB
|
16TB
|
Default
inode size
|
128
bytes
|
256
bytes
|
Block
Mapping
|
Indirect
|
Extent
|
Time
Stamp
|
Second
|
Nanosecond
|
Sub
Directory Limit
|
32,768
|
Unlimited
|
Preallocation
|
In-core
reservation
|
For
extent file
|
Defragmentation
|
No
|
Yes
|
Directory
Indexing
|
Disabled
|
Enabled
|
Delayed
Allocation
|
No
|
Yes
|
Multiple
Block Allocation
|
Basic
|
Advanced
|
Posted by PNA Prasanna at 4:43 AM 0 comments
Labels: Linux Articles
Saturday, March 14, 2015
Avidmux installation procedure in Ubuntu 14.04 derivatives
Posted by PNA Prasanna at 3:07 AM 0 comments
Audacity installation procedure in Ubuntu 14.04 derivations
#sudo apt-get install audacity
Posted by PNA Prasanna at 2:59 AM 0 comments
Thursday, March 12, 2015
VLC installation procedure in RHEL 7
Follow these steps to install VLC player in RHEL 7
#rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm
#yum update
#yum install vlc
Posted by PNA Prasanna at 9:21 AM 3 comments
Labels: RHEL 7/CentOS7