ufs_readdir: bad dir warning messages
We observed below warning messages on server: Jan 12 16:15:15 TEMM ufs: [ID 703900 kern.warning] WARNING: ufs_readdir: bad dir, inumber = 273728, fs = /var/tmp/tempdir1 Jan 12 16:15:15 TEMM ufs:...
We observed below warning messages on server: Jan 12 16:15:15 TEMM ufs: [ID 703900 kern.warning] WARNING: ufs_readdir: bad dir, inumber = 273728, fs = /var/tmp/tempdir1 Jan 12 16:15:15 TEMM ufs:...
We are getting issue with TAR backup with error messages: Solution: This error is a common issue which occurs due to problem with tape drive. It is recommended to...
cat command is used to display the files’ content on linux server. ejaisak@5CD6454KCC /var/log $ cat setup.log 2017/01/04 17:49:34 Starting cygwin install, version 2.877 2017/01/04 17:49:34 User has backup/restore rights
Now i will show you some of the interesting jQuery selectors. Suppose you want to select 5th tr element(or the elements which are comes after 5th element, or before that)...
In the last topic, we have seen the use of ":even" to apply changes to even occurrences of any element, now lets look one another selector ":odd" to select odd...
Now suppose we are creating a list and want to apply different styles to odd and even items of the list then we can us the following syntax: $("li:even") The...
Now suppose you want to select last p element on the page, then jQuery provides a very useful and powerful selector ":last" that selects the last element. Its usage can...
Now suppose you want to select first p element on the page, then jQuery provides a very useful and powerful selector called ":first" that selects the first element. Its usage...
In our first example of jQuery we have seen the "hello world" example with the significance of document.ready event but there is a concept which may be striking in your...
Here we will see how can we select the elements on our page with two classes. Its syntax is very simple: $(".class1.class2") where class1 and class2 are the two classes....