Log in
يك شنبه,۱۶ بهمن ماه ۱۳۹۰مطابق با
١٣ ربيع الاول ۱۴۳۳هجرى قمرى

Linux
Ignoring whitespace changes with svn diff
svn diff --diff-cmd `which diff` -x "-w"
Find any regular files with the criteria -type f, and those modified seven or fewer days ago (-mtime -7).
find / -type f -mtime -7 | xargs tar -rf *.tar
لینوکس شریف سیستم عاملی ایرانی
find . -exec grep -l ‘foobar’ {} \; 2>/dev/null
find $root -name $filename -exec grep -l ‘something’ {} \; 2>/dev/null
Enable WPA Wireless in Ubuntu
Update the source list run the following command
$ sudo apt-get
$ sudo apt-get install wpasupplicant
$ sudo apt-get install network-manager-gnome network-manager
Comment out everything other than “lo” entries in that file and save the file
$ sudo vi /etc/network/interfaces
Create a file called /etc/default/wpasupplicant, add entry ENABLED=0 and save the file
$ sudo touch /etc/default/wpasupplicant
Reboot the system or use the following command
$ sudo /etc/init.d/dbus restart
Tips & Trick
autoupdate: sudo aptitude autoclean
format a new partition as ext3 file system: sudo mkfs -t ext3 /dev/sdb1
create a new mount point: sudo mkdir /media/mydrive
One Response to “Linux”
Post your comment
Subpages
- Partition and Format
- Application in chroot
- Realplayer and IE
- SSL & Serverzertifikat
- Debian Package
- Solaris Package
- Linux commands
- Web service
- PHP
- PERL
Archives:
- Mercurial & hg view
- jPortal wordpress theme
- WordPress Careers plugin
- Check For Email pattern
- WordPress ODLinks Plugin
- WordPress Classifieds Plugin
- Clean up the Ubuntu
- Persian philosophs and sciences
- » Spiele für Schulkinder
- » Learning French
- » ایستگاه قطار دورتموند
- » Highlights of Iran's history
- » Take a free course online.
- » Korea Live TVs
- » LIVE-STREAM
- » Schule Übungsblätter
- » حاج آقا سيد عباس دوستانى
- » Persian philosophs and sciences
- » Aktuelle Angebote
- » Hosting & Service Provider
Categories:
Links
- (IE)HTML - اديتور به فارسي و لاتين
- Online Graphic Plotter
- Online scientific calculator
- تقويم ساليانه
- تبديل کُدهای رايج
- تبدیل تاریخ شمسی به میلادی
- فارسی نويس
- تبديل خط فينگليش به فارسى






FIND and GREP Combination.
Using find and grep together:
find ./* -exec grep -l -i “site Overview” {} \;