Search:

Type: Posts; User: Rizado; Keyword(s):

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds; generated 32 minute(s) ago.

  1. Replies
    42
    Views
    2,018

    Re: how to solve y=++y + ++x

    There's no one that would actually use something as stupid as this for real so no, having this well defined would only add unnecessary complexity. Which leads to bugs.
  2. Replies
    1
    Views
    665

    Re: Qyoto and mono in karmic

    So about a year later I have decided to give qyoto (and mono) another try. Monodevelop seem to be a joy to work with now :) Feels really fast and solid.

    Anyway, the problem is solved very easily...
  3. [SOLVED] Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    There's a problem with atleast the kernels in phc-linux ppa. For some reason modules install to /lib/modules/2.6.35.4 which is not correct, hence they do not get loaded. Have not tried to compile...
  4. Replies
    1
    Views
    665

    Qyoto and mono in karmic

    I'm trying to get the Qyoto bindings to work with mono in Kubuntu Karmic. It's not going too well... I've installed everything with qyoto and kimono in it's name from the repos but I can't figure out...
  5. Replies
    9
    Views
    2,428

    [all variants] Re: Make permission change stick

    No you are all getting me wrong, I'm not trying to get write permissions on the partitions mounted. What I want is raw write permissions to /dev/sda3 and /dev/sda7. No amount of tinkering in fstab...
  6. Replies
    9
    Views
    2,428

    [all variants] Re: Make permission change stick

    No, it's the permission of the drive. /dev/sda3 and /dev/sda7 in my case. Since they exist in /dev which is on a ext3 drive permissions should stick. And they do, but after a few minutes something...
  7. Replies
    9
    Views
    2,428

    [all variants] Make permission change stick

    Hi! Because of some idiotic reason whenever I change a drive permission (running sudo chmod 666 /dev/sda1) the permissions keep reverting to the default every few minutes. I can't find any info on...
  8. Replies
    9
    Views
    1,242

    Re: Wireless Gaming Adapter Bridge

    14 Mbps aint really something to brag about... And I wonder how the performance really is on a faster homeplug. It's pretty neat though, could be useful in a big house with gaming consoles with...
  9. Replies
    1,333
    Views
    870,073

    Re: HOWTO: Jaunty Intel Graphics Performance Guide

    Are you sure? I know uxa is default but I thought MigrationHeuristic defaulted to all. If it doesn't there's either something wrong with some other settings or there's a bug. Because I tried this...
  10. Replies
    1,333
    Views
    870,073

    Re: HOWTO: Jaunty Intel Graphics Performance Guide

    It just gets more odd :) I'm using the bleeding edge drivers and a 2.6.30 kernel. A few days ago a driver upgrade increased my glxgears fps to about 2300 with composting on. But only 1500 with it...
  11. Replies
    1,333
    Views
    870,073

    Re: HOWTO: Jaunty Intel Graphics Performance Guide

    The new drivers are not so good on my GM45. They are working and with a great performance increase, but many games crash X too... I've tried Simcity 4 and Civilization 4 through wine and both crash....
  12. Re: HowTo: Undervolt your notebook CPU for longer battery life

    I don't think this is working for me, the script goes way down to -1 without any problems. This goes for all frequencies... It doesn't seem to be any problems with the phc patch either. The...
  13. [other] Re: Can I turn a virtualbox machine into a real partition?

    Oh I'm sorry =P

    Just follow the steps on the webpage I linked to. Make sure that you are using static size drives. Otherwise it won't work (It's the first command that outputs 1 or 2)

    Also, I...
  14. [other] Re: Can I turn a virtualbox machine into a real partition?

    Thought I'd just throw some pointers to another webpage I found. Seems the headers are not always the same length but the command :

    od -j344 -N4 -td4 image.vdi | awk 'NR==1{print $2;}' will return...
  15. Poll: Re: What programming language does your school teach first

    They have been teaching java as first language since 97 or so, and it's a nice language to program in. You can really learn OO without a lot of bad habits.
  16. Re: HowTo: Undervolt your notebook CPU for longer battery life

    Not correct, the cpu starts making misscalculations that can crash apps before the computer crash. It also heavely depends on the temperature. Cold air mean more stable computer.

    Just do a torture...
  17. Thread: Wine vs. Native

    by Rizado
    Replies
    25
    Views
    2,055

    Poll: Re: Wine vs. Native

    I don't care whether it's native or runs through wine as long as it works as it should and the gaming company fixes any bugs. A game is a game, if it would have been an opensource project things...
  18. Replies
    81
    Views
    11,559

    Re: Wine 0.9.56 Released!

    Usually there's packages ready in a few hours but this time it's different, probably the package maintainer isn't available or something.
  19. Replies
    5
    Views
    416

    Re: Making a script aware where it's placed?

    Well if a script were to echo something to a file like: "echo hello >> file" and I run it from home by /opt/merryChristmas/script it would put "file" in home, I want it in a relative path from the...
  20. Replies
    5
    Views
    1,469

    Re: Store CD-ROM data on hard drive?

    dd if=/dev/pathtocdrom of=cdimage.iso bs=2048
    This creates a iso image of the cd.


    sudo mount -o loop cdimage.iso /media/iso
    And this mounts the iso in /media/iso.
  21. Replies
    5
    Views
    416

    Making a script aware where it's placed?

    I'd like to make my bashscript launch where it's placed.
    If the script is placed in /opt/merryChristmas and run from home (or anywhere else, like "bash /opt/merryChristmas/script") i'd like it to be...
  22. Replies
    68
    Views
    31,002

    Re: HowTO: Adobe Photoshop CS2 in Wine!

    Didn't work for me either, but the second method works great!

    http://bugs.winehq.org/show_bug.cgi?id=10018#c16
  23. Re: HOW-TO: Adobe Photoshop CS2 working on Wine (a bit unstable tho)

    For those of you with problems activating Photoshop CS2 I have the solution! :)

    http://bugs.winehq.org/show_bug.cgi?id=10018#c16
    The first method didn't work for me, might be because I have...
  24. Replies
    1
    Views
    632

    Module name --> Place in Kernel

    There's something I've always wanted to know. When I compile a new kernel I look what modules are loaded by lsmod to see what I have. But often the module name is not used in the kernel description. ...
  25. Replies
    14
    Views
    17,076

    Re: Bash - if [ -n "$@" ]

    Oh my http://www.flashback.info/images/smilies2/noexpression.gif
    That's just stupid... Glad it isn't me http://www.flashback.info/images/smilies2/grin.gif
Results 1 to 25 of 162
Page 1 of 7 1 2 3 4