Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.08 seconds.

  1. Thread: Entropy

    by HiImTye
    Replies
    6
    Views
    702

    [ubuntu] Re: Entropy

    that password is perfectly secure, you should be looking more at the crypt() function than entropy
  2. Replies
    19
    Views
    4,105

    Re: Anyone tried Atom Text Editor?

    I like vim, which supports all the features of Atom
  3. Replies
    4
    Views
    687

    [ubuntu] Re: chmod behavior changed??

    chmod won't work for non-Linux filesystems since they handle permissions differently. you need to set your permissions at mount time, and remember that masks are backwards
  4. Replies
    5
    Views
    288

    [ubuntu] Re: Looking for a Video Converter

    here's the script I use to convert to mp4 with ffmpeg
    #!/bin/bash

    # new file name
    F=${1##*/}
    F="_converted/${F%.*}.mp4"
    # if the file already exists then we have no work to do
    if [ ! -f "$F"...
  5. Replies
    11
    Views
    3,730

    [all variants] Re: Continuation of DenyHosts

    fail2ban is still in the repos
  6. Replies
    15
    Views
    8,577

    Re: Drop down terminal suggestion

    I used to use Guake, now I just use urxvt in i3wm's 'scratchpad'
  7. [SOLVED] Re: how to get wine1.4 installed in 14.04/mint17?

    playonlinux is by far the easiest way to customize your wine sandboxes
  8. Replies
    2
    Views
    344

    Re: Taking care of HD

    if you're using an ext file system, then you'll only need to worry about fragmentation as your partition approaches capacity. that said, fsck automatically runs in frequency specified by the 'pass'...
  9. Replies
    35
    Views
    4,904

    Re: Which DNS service are you using ?

    [ tye@t: ~ ]$ cat /etc/resolv.conf | grep -v '^#'
    nameserver 208.67.220.222
    nameserver 208.67.222.220
    nameserver 208.67.220.220
    nameserver 208.67.222.222
    nameserver 8.8.4.4
    nameserver 8.8.8.8...
  10. Replies
    16
    Views
    1,492

    Re: Share your favourite youtube video (Max 2)

    @Habitual, lol those Geico commercials are amazing

    my two favourite videos are Cecil Otter - Rebel Yellow because it's an amazing song, and it's also the best song based on a Peewee Herman movie,...
  11. Re: broacasting radio online (like blogtalk radio)

    if you're just looking to stream your voice, a basic icecast server is the simplest to set up.
    if you're looking to stream music as well, mpd's httpd output doubles as an icecast/shoutcast server,...
  12. Replies
    35
    Views
    4,904

    Re: Which DNS service are you using ?

    I use the 4 OpenDNS servers and then the 2 GoogleDNS servers
  13. Thread: To serve man

    by HiImTye
    Replies
    14
    Views
    932

    Re: Firefox adding DRM support

    the point of W3C EME is to remove the need for Flash or Silverlight and have it in the W3C standard
  14. [SOLVED] Re: How to completely remove lubuntu, and reinstall windows 98?

    is it an upgrade CD? then you have to install a previous version of Windows, presumably Win95. it seems you already know this, however.

    there's a million resources on the interwebs for Windows...
  15. [SOLVED] Re: How to completely remove lubuntu, and reinstall windows 98?

    from what I remember of the Win98 installer, it offers to format the drive for you, so just insert the CD or floppy drives and install away
  16. Replies
    10
    Views
    462

    [ubuntu] Re: Cannot be pinged

    then this suggests that the issue is with the Mac or the router
  17. Replies
    10
    Views
    462

    [ubuntu] Re: Cannot be pinged

    can your ubuntu machine ping it's own ip?
  18. Thread: vimrc E

    by HiImTye
    Replies
    1
    Views
    782

    Re: vimrc E

    Error detected while processing /home/nbougach/.vimrc:
    line 2:
    E749: empty bufferis because of this
    :numberbecause you're loading an empty document, or no document. as for
    v:3: command not...
  19. Thread: To serve man

    by HiImTye
    Replies
    14
    Views
    932

    Re: To serve man

    that article sounds like it was written by someone that doesn't actually understand what Mozilla is doing, or worse, does and is intentionally misleading the readers.
    Mozilla is going to include W3C...
  20. Re: Ubuntu 14.04 runs very slowly in Win7 VirtualBox

    if they're using regular Ubuntu, that might actually make it slower, as it falls back to llvmpipe if you don't have 3D acceleration

    try installing another desktop environment, Unity is pretty but...
  21. Replies
    4
    Views
    3,015

    Re: MP3 tag editor/rename recommendations?

    if you want to use a graphical program, Ex Falso is pretty good. if you're comfortable with the command line, eyeD3 is great. it's what I use.
  22. [server] Re: Samba is a myth. Never been able to actually connect to a share and create someth

    a few questions. you said 'I used the root ID and password' - do you mean to say you enabled the root account and gave it a password? if not, what account are you using?
    what are the permissions on...
  23. Replies
    10
    Views
    462

    [ubuntu] Re: Cannot be pinged

    I mean the same /24
    yeah, iptables looks ok
  24. Replies
    6
    Views
    754

    Re: ISP detecting zero access trojan

    the symantec pages specifies these IP addresses as connected to the trojan, so you can monitor your network for attempts to access those IPs

    69.176.14.76
    76.28.112.31
    24.127.157.117...
  25. Replies
    4
    Views
    562

    [SOLVED] Re: vi not saving cursor position

    cp /usr/share/vim/vimrc ~/.vimrc
    vim ~/.vimrcin the augroup section put
    autocmd BufReadPost *
    \ if line("'\"") > 1 && line("'\"") <= line("$") |
    \ exe "normal! g`\"" |
    \ endif...
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4