Search results

  1. Where can I buy individual keyboard keys?

    I tried using stickers but they end up looking shitty. I need them for a project I'm working on that isn't computer related. They're just gonna end up used as buttons, but I'd like to use keyboard keys for this.
  2. Where can I buy individual keyboard keys?

    I'm trying to get a handful of lower case keyboard keys, but I can't find any place that sells them individually. I found one site that sells individual keys, but you have to know the make/model. I don't care what they keys go to and I don't know what make/model might have lower case by...
  3. Any actual good tutorials out there on how to setup SMTP auth?

    If its Postfix you can pretty easily get around the ISP blocking port 25 by enabling submission (port 587) in /etc/postfix/master.cf. You can run this along side the regular port 25 SMTP. This is a pretty common fix and I'm sure you should be able to do this on other MTAs as well.
  4. Email server problem - Sending email from remote host.

    There are a lot of ISPs that block port 25 traffic these days. Enabling submissions (587) on postfix usually works around this. You should be able to do this on just one server though.
  5. Efficient replacement for "find"?

    As far as a straight speed search I can't think of anything faster than find. Its pretty lightweight as is. If the files you are scanning are spread across multiple disks you could run find's in parallel on each one assuming you aren't CPU bound. With that said, depending on what you are...
  6. nix Blogs?

    Thanks, lxskllr. I try to avoid reddit since its so easy to lose half my day over there, but I'll give it another look. Also happened to find this while skimming lxer today - http://fossforce.com/2013/07/whats-your-favorite-foss-or-linux-blog/
  7. nix Blogs?

    Was hoping to get some recommendations on some blogs to add to my RSS. I'm mainly looking for stuff that pertains to the administrative side of the LAMP stack... SysAdmin stuff in general is alright, but there seems to be a definite lack of good nix blogs out there right now. Here is the...
  8. Best remote control software for Windows / Linux connections

    I've had good success with Teamviewer... You can use direct IPs if you're just doing it within your network for better latency. Otherwise... like MrColin said... ssh ;)
  9. How do I go about forcibly unmounting a drive?

    You could include checks against fuser and the mount point... fuser -vm /mnt/point To wait until it isn't in use. If a process isn't finished with a mount point that disappears it can cause issues where its still trying to hold onto the resources, so the kernel thinks its still in use...
  10. Best SMTP solution

    Postfix is a breeze to configure, especially for what you state are your needs. From another thread looks like you already have some experience with it, so unless there is specific functionality that isn't available no real point in switching.
  11. Postfix question

    Dovecot is a pop3/imap server, so no.
  12. Just discovered the awesomeness of X forwarding

    Its cool, but the only time I've ever found it to be useful is to take advantage of a GUI config for something that takes a bit of tweaking on multiple files... Like configuring Kerberos authentication.
  13. Linux Iptables and forwarding all traffic from one IP to another IP

    If Server A has no other reason to connect to Server 1-10, you could just add some entries to the hosts file with those hostname associated with the IP for Server B. I should say, if Server A has no reason to connect to Server 1-10 that doesn't need to go through Server B first.
  14. Adding 2nd hdd to CentOS

    fdisk /dev/sdb n, p, 1, <enter>, <enter>, w mkfs.ext# /dev/sdb1 cp -a /etc/fstab{,.bak} vim /etc/fstab #insert into fstab /dev/sdb1 /data ext# defaults 1 2 mount -a Drive might not be sdb... ext# can be ext 2,3, or 4... Or another file system if you like...
  15. Running expect script to send commands in SSH

    You'd want to use the -d in the expect call itself: # expect -d scriptname And it will dump out the debugger info. With that said, have you tried replacing the qsub with something else?
  16. What exactly is the point of networkmanager?

    NM generally works pretty well as long as you use NM to configure networks. If you prefer to manually hack on files you're better off disabling/uninstalling it as you've discovered. I haven't had issues using it as long as I only make network changes through NM.
  17. Want to get into the inner "core" of Linux, where to start

    From a functional point of view, you'd probably benefit more from system tuning than anything else. Do some digging into the sysctl settings and figure out what effects changes to them have. In addition to tuning up the performance, do your best to break the system. During the process you'll...
  18. Running expect script to send commands in SSH

    You should try running your expect script with the -d flag. This will dump out some debugger info so you can see what steps might be failing.
  19. Shared Hosting server - should I have access to root?

    If its a chrooted environment it may not be the root of server, just of your environment.
  20. Apache Tuning -- ExtendedStatus

    While reading through the Apache documentation, I found a mention that disabling ExtendedStatus can speed things up by preventing gettimeofday() calls. I deal with a lot of servers that see a lot of traffic and wanted to find out what kind of gains it would give me. Strangely, I actually found...
  21. The little things - why Linux still isn't ready for prime-time.

    Did you submit a bug report?
  22. What's a good video card for Linux?

    Can't help with the video card, but if you're jonesing for some gaming look into ascii based games like Dwarf Fortress or rogue-likes... Dungeon Crawl Stone Soup is pretty fun. Most of these games have tilesets available so you aren't staring at squiggles, but low graphics needed. Don't want...
  23. Probably a stupid question but...

    "file1 file2..." isn't an option... It was an example of manually entering each file and subfolder at the command line. Given a directory structure: topDir subDir1 file1 subDir2 file 2 subSubDir1 file3 I know that looks like crap. Just running `ls` with no flags...
  24. Probably a stupid question but...

    From `man ls` `ls *` is the equivalent of `ls file1 file2 subdir1 subdir2 subdir3 `.
  25. Email server anomaly

    Are you sure it isn't an alias issue? This is from a base install of the exim package on CentOS 6.3... ~]# grep /etc/aliases /etc/exim/exim.conf # build-time configuration. The default path is the traditional /etc/aliases. data = ${lookup{$local_part}lsearch{/etc/aliases}} ~]# grep webmaster...
  26. Linux Admin IRC Channels?

    Any recommendations on a good IRC channel to hang out in that is devoted to Linux system admins? Preferably something with a lot of good knowledge and limited bullshit/posturing. Thanks, Bob
  27. Email server anomaly

    Like Demo24 mentioned... It sounds like aliases might be what you want, but I've got more experience with Postfix too.
  28. How do you deal with lack of inheritance in the Linux FS?

    Since Apache doesn't really need write permissions on most things, setting up a umask so that the other permissions are set to 4 (files) and 5 (folders) should be sufficient. With that said, proper group ownership of the folders in the webroot and group sticky should solve most of your...
  29. What are some essential linux cmds an admin show know? I have a interview soon

    Knowing what a command does (tar creates archives) and where to find info (man tar) is going to be more important for "light linux work". There is no point in investing the time into learning the nuances of a command based on an assumption of what systems you will be dealing with. For minor...
  30. Looking for a creative Linux Distro

    I was going to recommend Fuduntu. Its still pretty young, so the best thing to do for help like that would be to hit up their forum or IRC. Depending on time of day, IRC response might take a while, but most of the Fuduntu team hangs out in there.
  31. Why is /var/log/secure empty?

    Check /etc/rsyslog.conf instead... If it isn't present you can just install the rsyslog package. Whatever info you found about syslog.conf should also apply to rsyslog.conf Also, check `/etc/init.d/rsyslog status` and make sure its running.
  32. Cloud - quick explanation pleasr

    While I agree that its very often just used as a buzzword, the reality of the cloud is actually quite exciting. NIST's definition does pretty well in summing up what should actually be considered to be cloud -- http://csrc.nist.gov/publications/nistpubs/800-145/SP800-145.pdf The definition...
  33. Cloud - quick explanation pleasr

    Cloud also offers the ability to quickly scale your environment. If you normally get 2-3000 hits per day and you find out you're going to be on the Today Show tomorrow, how is your little server going to handle all the traffic sent its way? In a well configured cloud environment you can just...
  34. ZFS On Linux Is Now Set For "Wide Scale Deployment"

    I'm wondering how ZFS benchmarks against others on Linux and how ZFS on Linux compares to ZFS on Solaris. I'm hoping Phoronix includes the latter in their upcoming tests. Even with a minor speed hit, I think the addition of ZFS is great.
  35. Some distros dropping Mysql for MariaDB

    There are ways around package naming issues. Compiling from source and throwing soft links at it usually work pretty well. Realistically though, a migration shouldn't be a major issue. If you are doing things right and testing in a dev environment before moving into prod, you'll find most...
  36. RSS Server Software?

    Some alternatives to tiny tiny rss, for anyone interested. Source: http://www.linuxbsdos.com/2013/03/15/google-reader-alternatives/ http://cazalet.org/zebrafeeds/ http://selfoss.aditu.de/
  37. RSS Server Software?

    Thats the one. I can't figure out how to add feeds on it, but its not that big a deal to me since I rarely add new ones.
  38. RSS Server Software?

    So far I'm enjoying tiny tiny rss. No real issues and the transition from Google Reader was pretty smooth. I found a free ttrss app for android that works well too.
  39. RSS Server Software?

    Doesn't look too bad. Quite a bit of configuration options available to get it looking the way I want. I'm a bit disappointed with the lack of documentation available. I'm having a hell of a time getting authentication to work... almost to the point where I'm ready to just institute a...
  40. RSS Server Software?

    Someone at work recommended tiny tiny rss - http://tt-rss.org/redmine/projects/tt-rss/wiki Going through the installation right now. Looks like it might be just what I'm looking for. I'll give an update once I've got in configured.
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |