unixbhaskar.blogspot.com
Musing with GNU/Linux!: July 2012
http://unixbhaskar.blogspot.com/2012_07_01_archive.html
Wednesday, July 11, 2012. How to fix shell "permission denied" error. I believe everyone,who works on terminal for certain length of time come across this error sometime. Very trivial topic so the fixing is also very trivial too. Once you tried to logged into the shell you get the "permission denied" error on the console but get the shell prompt and most importantly you can not do a "ls" and other stuff too. How to do it right? Chown -R username:groupname disk-partition. Tip: Be careful about /dev/null!
unixbhaskar.blogspot.com
Musing with GNU/Linux!: September 2012
http://unixbhaskar.blogspot.com/2012_09_01_archive.html
Thursday, September 20, 2012. Best possible way to Systemd's transition from /lib to usr/lib on Arch Linux. Okay,I seriously had struggle(due to my lack of brilliance) for this transition ,once I update one regular update on Arch Linux by ignoring glibc like previous time.And only found out that kernel image creation is not possible. Because the kernel module location has changed with new kernel with systemd.So ,it was trowing "module not found error".irk. On a wiki page ,which solve the mystery. The Des...
unixbhaskar.blogspot.com
Musing with GNU/Linux!: How to enlist installed packages on Gentoo
http://unixbhaskar.blogspot.com/2013/01/how-to-enlist-installed-packages-on.html
Wednesday, January 9, 2013. How to enlist installed packages on Gentoo. Okay,I haven't write anything about sometime.So start this year with very rudimentary little info. Say, I would like to see how many packages are installed in system running Gentoo? So ,how do i do that? Actually couple of ways to do that.First and foremost thing to do, installed a package called gentoolkit. Once this is installed all the hard is done! Bhaskar@GentooLinux 17:52:33 Wed Jan 09: sudo genlop -t gentoolkit. IP-] app-admi...
unixbhaskar.blogspot.com
Musing with GNU/Linux!: March 2012
http://unixbhaskar.blogspot.com/2012_03_01_archive.html
Thursday, March 22, 2012. How to correct a small python code error! So, I was building a software which built on python2.6 version and I was exploiting it on CentOS 5.8.But when I ran the script I have come across that the script is throwing error and saying the syntax is invalid! Although I have installed python2.6 separately on this box .then what? The error is ordinary :. Sudo /w3af console -f. File "./w3af console", line 108. Rev = 0 if (a = 'HEAD') else -1. But tricky.might lead into long haul :).
unixbhaskar.blogspot.com
Musing with GNU/Linux!: April 2012
http://unixbhaskar.blogspot.com/2012_04_01_archive.html
Monday, April 23, 2012. Read the contents inside a RAM. In this post I will show you ,how you can see what is holding in your system RAM at the present moment. Here is what you need to do :. Bhaskar@GentooLinux 12:11:22 Mon Apr 23: sudo strings /dev/mem less. And the outcome from my laptop is below:. Grub chainloader real boot. Grub disk ata pass through. Grub disk dev iterate. Grub disk dev register. Grub disk dev unregister. Grub disk firmware fini. Grub disk firmware is tainted. Grub disk get size.
unixbhaskar.blogspot.com
Musing with GNU/Linux!: How to fix "Read-only" root file system
http://unixbhaskar.blogspot.com/2014/02/how-to-fix-read-only-root-file-system.html
Thursday, February 20, 2014. How to fix "Read-only" root file system. This happened on Ubuntu 13.10. Okay, I recently encounter it in one of my OS's installed in my laptop.there are many of them .this is on Ubuntu. After booting( I am accessing this partition after month or two! It works fine for few minutes then all of a sudden it went back to Read-Only mode and that too root fs.irk.real irk.:(. The root fs was has the parameter of " on-error=errors=remount-ro. And which is missing the " defaults. Poste...
unixbhaskar.blogspot.com
Musing with GNU/Linux!: August 2013
http://unixbhaskar.blogspot.com/2013_08_01_archive.html
Wednesday, August 7, 2013. How to install powerpill( a pacman wrapper) on Arch Linux. Generally follow this page. And do the thing below:. Powerpill-2013.7.25/man.md/. Powerpill-2013.7.25/man.md/powerpill.json.1.md. Powerpill-2013.7.25/powerpill-bash-completion.sh. Powerpill-2013.7.25/powerpill.json. Powerpill-2013.7.25/man/powerpill.json.1.gz. Bhaskar@ArchLinux 11:55:02 Wed Aug 07: /Downloads cd powerpill-2013.7.25. Bhaskar@ArchLinux 11:55:05 Wed Aug 07: /Downloads/powerpill-2013.7.25 ls. If you're sure...
unixbhaskar.blogspot.com
Musing with GNU/Linux!: September 2014
http://unixbhaskar.blogspot.com/2014_09_01_archive.html
Wednesday, September 3, 2014. How to fix Nginx problem with SELinux. I was getting the below error while try to start nginx on the same box as httpd running.but it has got nothing to do with httpd . 19:35:30 Mon Sep 01:/etc/nginx sudo systemctl status nginx.service. Nginxservice - The nginx HTTP and reverse proxy server. Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled). Active: failed (Result: exit-code) since Mon 2014-09-01 19:33:13 IST; 2min 28s ago. Rw-r- r- nginx.conf. 19:42:10 Mon Se...
git.wiki.kernel.org
GitProjects - Git SCM Wiki
https://git.wiki.kernel.org/index.php/GitProjects
From Git SCM Wiki. Projects that use Git for their source code management. If your project is not listed, please add it here. List does not currently include Git. Or git-related tools; see InterfacesFrontendsAndTools. Kernel-related projects that use Git for their source code management. Http:/ git.kernel.org/? Linux/MIPS (port of Linux to the MIPS architecture). Http:/ www.linux-mips.org/wiki/Git. Description, includes repository URLs). Http:/ www.linux-mips.org/git. NFS client patches for Linux. Http:/...
unixbhaskar.blogspot.com
Musing with GNU/Linux!: Git is cool and awesome!!
http://unixbhaskar.blogspot.com/2013/03/git-is-cool-and-awesome.html
Thursday, March 14, 2013. Git is cool and awesome! Using a version control system is a mandatory thing for software developments.I have personally use svn and to be very frank stumble a lot. But when I look in git , I feel more comfortable and at home kinda feeling.Those of you are serious about it,should look in here to get your hands dirty. First read it here. If you are impatience one like me then should start using it here. Here are few interaction with my git setup for your reference:. Bhaskar@Fedor...