Search Results

2
votes
3answers
103 views

In a linux kernel module, how can I get inode of a known path

In a linux kernel module (i.e. working in kernel space), I have a path of a file. Which function(s) can be used to get the inode of that file. Specifically I need to get t …
0
votes

Resources for Windows developer to switch to Linux

Headphone drivers ?!? you need headphone "drivers" in windows ? ;) "Alien linux shell keywords" ? seems like you are somehow biased :) Go with ubuntu, and get ready to really "learn …
1
vote

Is gtk+ responsible for the awkward look of most linux applications?

Well, the OSX-like theme has unaligned text placement but most of the others on the page you linked looks fine to me? Also, It's not too hard to fix those things. As @nemo stated, there ar …
3
votes

writing bash script to change text and write to a log

This will change only the first appearance of "dev" to "stage" sed -i '0,/dev/ s/dev/stage/' config.inc.php Be aware that it changes "devel" into "stageel". This v …
1
vote

What are good ways to get something like D-Bus to work across multiple Linux machines, possibly through firewalls?

I know of no ready-made solutions like this. My suggestion is that you write scripts that use curl or wget to send HTTP POST requests to a very simple web application, containing your inf …
1
vote

Determining the amount of time processes spend Blocking/Executing

You can use 'time' $ time ls /usr/bin real 0m4.756s user 0m0.051s sys 0m0.078s real - sys = total time waited for I/O (sleeping/blocking) s …