Search:

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

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. [ubuntu] Re: mdadm: /dev/sdd1 not large enough to join array, it is a same-size disk though

    I think I might have solved it by doing

    sudo mdadm /dev/md0 --add /dev/sdd

    It's doing something now, see how it goes.
  2. [ubuntu] mdadm: /dev/sdd1 not large enough to join array, it is a same-size disk though

    When I set up my server during the summer I used the partitioning tool from the installer (10.04) to set up a RAID-5 containing 3 2TB disks.

    I wanted to add two more disks today, but received the...
  3. [all variants] Seems like mdadm is not properly creating my raid 5

    I am trying to set up a RAID-5 on my new server.

    I installed 10.04.1 server on a 320GB hard drive.
    I attached 3 HDD's of 2TB each, used fdisk to create a partition and set the type to fd (Linux...
  4. [SOLVED] Re: Permission denied errors when executing a file on a different hard drive

    No, I did not think of that. But it works though. Thanks.
  5. [SOLVED] Permission denied errors when executing a file on a different hard drive

    I installed Ubuntu 10.10 beta yesterday and most of it is working very well. However, I ran into a problem with permissions today.

    I have a HDD containing my home folder and a HDD containing my...
  6. Replies
    2
    Views
    1,300

    Mimic svn:externals behavior with Git.

    I apologize if this is posted in the wrong category, but I didn't really know where else to put it.

    Using Git on a couple of projects I'm becoming quite a fan. Coming from subversion the single...
  7. [other] Sync POP3 or allow archive of IMAP mail account

    I didn't really know where this question should be. Please move it if it should belong in a sub category.

    I am using Evolution at home and Thunderbird at work to access the mail account from work....
  8. Replies
    4
    Views
    1,984

    Re: No such file or directory

    Is there a reason you are doing all this?

    I downloaded the PDT Eclipse ZIP from the website, but you can do the same with the regular Linux Eclipse package, extracted the ZIP file to a folder in...
  9. Replies
    16
    Views
    1,066

    Re: inclusion of header files in c/c++

    True.

    Including the header file is not a problem, when linked statically (which is normally done by default for things like that) the linker will only "extract" the required methods into the...
  10. Replies
    4
    Views
    383

    Re: PHP - static variable frustration

    Shouldn't that be the other way around? Now you are checking whether the variable is not set, then returning it, and returning NULL when the variable is set.



    function get_value()
    {
    if...
  11. Replies
    5
    Views
    753

    Re: PDT plugin for eclipse, code assist.

    The problem might be caused by the version you are currently using. I know that the latest stable release has some issues with it and you can read more about it here.

    Using the @var comment is not...
  12. Replies
    27
    Views
    932

    Re: What programing language is right for me?

    http://www.codeblocks.org/ is probably one of the best. And cross platform. You can simply install it using Synaptic as it's present in the Ubuntu repositories.
  13. Replies
    4
    Views
    639

    Re: alternative msdn library

    MSDN is just a documentation site. (You can integrate it with Visual Studio but it's still an online website.) You can access it at http://msdn.microsoft.com/en-us/default.aspx.

    There are similar...
  14. Replies
    11
    Views
    880

    Re: My search for an IDE

    I use different tools for different tasks.

    For quick editing I use Vim with a bunch of extra plugins (code completion, snippets, nerdtree, ...) but when I'm working on a bigger project I like to...
  15. Replies
    6
    Views
    1,298

    Re: Using Vim for Web development

    Take a look at the slides from Andrei Zmievski's VIM for (PHP) Programmers presentation.
    The article also contains a link to his VIM setup which includes a whole lot of useful VIM scripts and...
  16. Replies
    16
    Views
    5,417

    Re: Whats in your .vimrc?

    I am also using several plugins from which I will not list the scripts here. I started out from the VIM configuration of Andrei Zmievski which he uploaded for his VIM for (PHP) programmers slideshow:...
  17. Replies
    30
    Views
    262,420

    Re: gcc: error trying to exec 'cc1plus'...

    Yes and no. I noticed that it does attempt to compile C++ applications but by default it doesn't link certain libraries. For example, when using math functions you need to specify -lm yourself.
  18. Thread: C==c++

    by tyfius
    Replies
    12
    Views
    1,057

    Re: C==c++

    This is not used much in C++ but more in C where you have to declare variables at the beginning of your function.


    void foo() {
    int a = 0;
    a = doSomethingWithA(a);

    int b = 0;
    a =...
  19. Re: Looking for an easy, open source PHP content management system

    It all depends on how advanced this website has to be and how much custom development one has to do.

    I used WordPress myself primarily as a blog engine and I made several attempts at creating...
  20. Re: When is Linux going to get a TextMate clone? What do you use?

    I use different tools for different tasks.

    For quick editing I use Vim with a bunch of extra plugins (code completion, snippets, nerdtree, ...) but when I'm working on a bigger project I like to...
  21. Thread: Learning OpenGL

    by tyfius
    Replies
    8
    Views
    619

    Re: Learning OpenGL

    OpenGL is certainly not limited to Delphi.

    For a quick start I can point you to Lesson 32. Also check out the other, very useful, OpenGL tutorials on the NeHe website.
  22. Re: Array of functions pointers... C++ compile error.

    [Off Topic]Is that so bad? Even if it is homework the OP at least made an effort and provided some examples. If you want to forbid any homework related stuff, even if it's well explained and...
  23. Replies
    9
    Views
    341

    Re: C Help please :)

    There are several things wrong. Let's start at the beginning.

    The use of "void main()" is not and has not ever been valid C or C++. Anyone to say so is wrong and if your teachers teaches you to...
  24. Replies
    10
    Views
    849

    Re: C++ IDE Question

    There is no full equivalent to Visual Studio on Linux or any other platform. I personally use Code::Blocks (which is now available in the Ubuntu 8.10 repositories!) which integrates code completion,...
  25. Replies
    3
    Views
    1,319

    Re: PHP editor with code assist

    I heard a lot about the latest version of NetBeans, but I didn't quite like it. I myself use Eclipse PDT. (I downloaded the All-In-One package from the website, unzipped it and start it like that....
Results 1 to 25 of 37
Page 1 of 2 1 2