Tux, Tux linux, Arch Linux, T-shirt artwork.

He he sounds really easy till you realize you need 10" by about 11" inch prints with about 600px res resulting in huge files and load times. Anyways I am on a disability and run a small Tux Linux Artwork Swag shop and here is some of the artwork. I am working on a large tux logo with small Arch Linux writing on the side but still in the planning stages.
Concept proof.
This is a post about the swag shop on this forum
http://bbs.archlinux.org/viewtopic.php?id=79807
Last edited by TomWitko (2010-06-11 03:15:58)

xc1024 wrote:Can I use the grafitti logo for a wallpaper? http://witko.ca/image-shack/tux/archlin … -shirt.png
The grafitti logo wallpaper is Streetart Arch Linux from kde-look.org the owner said I could use it for t-shirts but you would have to ask him.
http://kde-look.org/content/show.php/Ar … ent=102620
You could send him a pm from there thats how I got in touch with him. He has some real nice artwork

Similar Messages

  • Installing Multiple Operating Systems with grub and Arch Linux

    NOTE: Please keep in mind that there are many different ways to achieve this same result using various loop and ramdisk methods, read this with a separate window to jot down your comments and suggestions... this is ongoing for me so any help would be appreciated!
    Read the full article at Install Multiple Os without cds
    This is my first post and I plan on making this topic an official HOWTO with www.tldp.org.
    I have been into the computer security scene since 1990, but I realized that I had very little experience with the various LInux, Unix, and alternative Operating systems out there.
    I have a CD-RW drive but being a struggling computer security researcher I had no money for blank cd-recordables.  What follows is how I managed to install various operating systems on my computer (1 hard drive) without having to burn to a CD the ISO and then boot from that.
    I first partitioned my 120GB harddrive into 10 partitions, the 2nd partition is a small swap and the last partition is extra large because it holds all the ISO images..
    I then wrote a small shell script to automatically download (I love wget!)  the following.
    OpenBSD
    IpCOP
    Libranet
    Arch-Linux
    Fire
    Local Area Security
    Packet Master
    Devil-Linux
    FreeBSD
    Knoppix
    Helix
    Gentoo
    Yoper-Linux
    NetBSD
    RedHat
    Slackware
    The script also downloaded Installation manuals and md5 checksums.. (let me know if I should post... its pretty unsophisticated
    I installed Slackware (personal favorite) on hda1 using my last blank CD-R, note that I do not have a separate boot partitino.  (Should I?).  I also installed grub on the MBR.  I love grub, if you read through the man pages and all info you can find about grub, you can learn a whole lot.  Grub has much more features and capability than lilo, even though lilo comes installed by default with slack.
    I organize my kernel situation as follows...  In my /boot directory, I mkdir KERNEL, CONFIG, MAP, INITRD and that is a good way for me to keep my kernels and everything organized..  Another good way is a separate dir for each new kernel. 
    Since Arch-Linux is a solid distro, I'll use that as a first example.
    Here is the Arch-Linux section of my shell script
    goge Arch-Linux
    $w http://puzzle.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.iso
    $w http://unc.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.md5sum
    $w http://www.archlinux.org/docs/en/guide/install/arch-install-guide.html
    md55
    cat arch-0.6.md5sum
    md5sum arch-0.6.iso
    md55
    The first thing to do is to mount the downloaded ISO image so we can use it as if it were an actual CD.
    mount -t iso9660 -o ro,loop=/dev/loop0 cdimage /mnt/cdrom
    Where cdimage= the ISO image.   EX. /usr/local/src/ISO/Linux/Arch-Linux/arch-0.6.iso
    This mounts the iso as /mnt/cdrom.
    Next you need to copy /mnt/cdrom to a separate partition for the booting process.  So mkfs.ext2 /dev/hda9.  ( I prefer reiserfs or even XFS to ext but if you use something other than ext2 you could run into some problems because some of the installation kernels and initrds don't include support for reiserfs and so can't recognize the files.  Although you could use mkinitrd to create a new initrd with reiserfs support, that might be pushin it IMO...   I use the 9th partition consistently for this.  I know there is a "right" way to copy the /mnt/cdrom files so everything stays the way it is supposed too, using tar or cpio, but I'm lazy so I just do cp -rp.   
    (What is the tar or cpio commands to copy with correct permissions etc??)
    So you mount the 9th partition as whatever, say /mnt/hd and then copy the files.  Now what?
    Now edit your /boot/grub/menu.lst file to include the specific options to boot arch-linux installation. 
    A good idea is to find the isolinux.cfg file somewhere on the distro cd, this will tell you what to include in the menu.lst.
    Here is the section in my menu.lst
    title Arch Install
    root (hd0,8)
    kernel /isolinux/vmlinuz load_ramdisk=1 prompt_ramdisk=0 root=/dev/rd/0
    initrd=/isolinux/initrd.img
    This should be self-explanatory.  The root (hd0,8) is pointing to partition 9.  So the rest of the commands start from partition 9. 
    When you experience problems, remember you can always edit the grub boot options by typing 'e' and then edit the section.  Also, a good idea is to include several variations in your menu.lst so you can easily try other ways to boot efficiently.  And, remember to read up on all the installation guides that come with your distro, specifically, hard-disk installs. 
    There are special cases, Gentoo, has a semi-new compressed filesystem called squashfs.  BTW, this is AWESOME, so check it out.  It has to be compiled into the kernel, so some work is in order, but use this recompile to optimize your kernel.  You can get the squashfs patch for almost any kernel.  I use the latest stable 2.6 kernel.  Squashfs is incredible and although I don't think you need it to install from ISO, you do need it to expand the livecd.squashfs filesystem that comes with the cd.
    Heres a sample Gentoo section from my menu.lst
    title Gentoo Install
    root (hd0,8)
    kernel /isolinux/gentoo root=/dev/ram0
    initrd=/isolinux/gentoo.igz init=/linuxrc acpi=off looptype=squashfs loop=/livecd.squashfs cdroot vga=791 splash=silent
    A nother' tip is the shell that is provided if you experience problems, typically busybox or ash.  The key tools to get you going from here is mount and chroot.  Sometimes you will need to manually create a simulated file system and then chroot into it.  For instance, you might have to create boot, etc, bin, directories on the target partition. 
    I generally install each OS onto the next partition (careful of the logical partition) and add it to my menu.lst after install.  A good idea is after installation, copy the kernel and initrd(if there is one) to the slackware(or whatever) boot partition on hda1.  I copy kernels to /boot/KERNEL/ and initrd's to /boot/INITRD, then menu.lst is more organized...
    You then need to add an updated section to your menu.lst (just comment out the install section for later)
    Here is the finished arch-linux section from menu.lst
    title Arch Linux 6
    root (hd0,2)
    kernel /boot/vmlinuz26 ro root=/dev/hdc3
    This doesn't use my convenient boot/KERNEL/vmlinuz26 as you can tell by setting the root to partition 3.
    ***NOTE: Make a backup of MBR using dd and save to floppy, also backup the partition table to floppy, using cfdisk or parted.  And boot disks (I use 1 with grub, and 1 with slack, and tomsbootdisk) will invariably come in handy.  Tomsbootdisk is recommended, and make the grub boot disk when you install grub.  install to floppy.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    The final result after some fun experimenting, is when I boot, I have a cool grub boot screen come up with the option to boot into whatever OS I want, this is handy for multiple reasons.  One good thing to do after this is to port scan and vuln scan each OS, after you update of course.  Write this stuff down and you will know the weaknesses/strengths of the various OS's. 
    I can boot a custom Firewall, snort, or multiple honeypots using this procedure, as well as a graphical kde environment with a kernel optimized for graphics and my processor/architecture, or an environment devoted to forensics or even an environment suitable for programming.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    P.S. Some of the cooler alternative operating systems are BeOS 5, EOS, ER_OS, V2_OS, and my personal favorite Menuet.  Menuet is 100% assembly graphical operating system that fits on a floppy.  Its f'in money!
    This should be a good enough example to get you started, this kind of thing should be learned and not just copied... Knowing how to do this stuff could prove to be exceptionally useful...

    Start by reading all the articles built-in on your Mac - Help > Mac Help, search "printer sharing."
    http://desk.stinkpot.org:8080/tricks/index.php/2008/04/how-to-print-to-a-cups-se rver-from-mac-os-x/
    http://www.macosxhints.com/article.php?story=20080324224027152&query=share%2Bpri nter
    http://members.cox.net/18james/osxprintersharing.html
    http://ubuntuforums.org/archive/index.php/t-56940.html

  • Arch Linux Pumpkin Carving!

    After seeing Best Halloween Pumpkin Carvings from Ghost1227's blog, it inspired me to do a unique pumpkin carving this year. Looking through the archive of awesome pumpkin carvings, of course I didn't see Arch Linux (but there was Tux fortunately). So I wanted to make that carving! I planned this days ahead, thinking how the design should be. I did a practice carving before I did this one, which I made several mistakes on. Considering that was only practice, this second one came out much better! Happy Halloween!
    Wallpapers:
    1280x1024
    Last edited by Acecero (2009-10-31 03:24:06)

    Well I did two more pumpkin carvings at the last minute before the tricker treaters arrive.
    One of them is a taco, because of how much significance tacos have in the Arch community! I hope you like it, I also included the moldy Arch Linux carving as well.
    Last edited by Acecero (2009-11-01 02:20:36)

  • Arch Linux Wallpaper 1080p (Rendered with Blender Cycles)

    Title pretty much says it all. I've included the source .blend (Blender) file for those that want to tweek it.
    Wallpaper:
    Blender Source File: Download

    Haikarainen wrote:
    This is really beautiful! I read you rendered it using blender, is this available for linux also or is it windows/mac only?
    Criticism: Tux stands out too much, doesn't feel like he fits in. I think it would be really cool and better if you worked on his materials,  perhaps making him look like a plushy? You know a little furry.
    Thank you Yes, Blender works very well on Linux, you can get it from the official arch repo ($ sudo pacman -S blender). This image was modeled and rendered entirely on Arch Linux using Blender + Gimp for some touch-ups (I would never make an Arch Linux wallpaper on Windows/Mac, that's sacrilege ).
    Thanks for the criticism as well. Like I mentioned above, I'm working on a couple improvements and different designs already. I'll keep your suggestion in mine while designing them.

  • Arch Linux Newsletter for July 01, 2008, Discussion.

    http://archlinux.org/static/newsletters … ul-07.html
    Here we are going to discuss any questions, suggestions or random talk about the newsletter for June 04, 2008. Feel free to contribute with ideas and suggestions.
    As always thanks for your support,
    In the name of the Arch Linux Newsletter Team
    Eduardo "kensai" Romero

    Misfit138 wrote:
    kensai wrote:
    Dusty wrote:apparently people are more loyal to the Arch brand than the tux brand. :-D
    Those people have not seen an angry penguin charging at them.
    I most certainly am. Philosophically, I resent using the penguin kernel.
    It's just that Arch is so damn good, it has spoiled me for anything else.
    -->Same Here<--
    The linux kernel can drive me crazy sometimes...
    Hmmm, do you want to start ArchBSD Misfit? That is, FreeBSD + Pacman goodness + updated rc.conf?
    I shouldn't have suggested that, I don't have the time to be a dev for anything right now.

  • Just some few Arch Linux questions

    Hi, I am new to Arch Linux and am looking for some advice and answers.
    Here are the questions:
    1. Does the update command (I think its called pacman and it updates many things with one command in terminal) update the Arch Linux base, the DE that is installed, the apps that are installed and artwork on Arch Linux?
    2. Is Arch Linux User friendly once installed (When I say user friendly, I mean something like Ubuntu)?
    3. Does the drivers (Wireless card drivers, graphics card drivers, printer drivers and audio card drivers) come pre-installed once Arch Linux is installed like Ubuntu?
    4. What is the stablility and speed of Arch Linux compared to Ubuntu?
    That is all I need to know.
    Cheers,
    molom

    molom wrote:Hi, I am new to Arch Linux and am looking for some advice and answers.
    Here are the questions:
    1. Does the update command (I think its called pacman and it updates many things with one command in terminal) update the Arch Linux base, the DE that is installed, the apps that are installed and artwork on Arch Linux?
    pacman is the package manager for Arch. It will install single package, batches of packages, update the installed packages and several other things. Yes, one command 'pacman -Syu will update all the installed packages to the most recent available in the repositories. It will not update your artwork, ut everything else will be updated if you so desire.
    molom wrote:2. Is Arch Linux User friendly once installed (When I say user friendly, I mean something like Ubuntu)?
    Once you have installed the base systen, updated and then installed whatever desktop environment or window manager you want, whatever programs you want, etc., it will be as user friendly as you have made it.
    molom wrote:3. Does the drivers (Wireless card drivers, graphics card drivers, printer drivers and audio card drivers) come pre-installed once Arch Linux is installed like Ubuntu?
    As others have said, the install process does a fairly good job of detecting your hardware and installing the necessary modules, but it is up to you to install drivers for your nVidia / ATI video card if you want accelerated graphics. You'll have to install your printer (generally via cups, which you must also install). You'll have to install alsa and you may have to configure your sound.
    molom wrote:4. What is the stablility and speed of Arch Linux compared to Ubuntu?
    Arch is what you make it. You can have a rock solid stable system, or you can opt to be bleeding edge and risk the occasional package breaking.
    molom wrote:So when you say 'pkgs', do you also mean the desktop environment as well. For example, I have E17 installed and I use the 'pacman -Syu' command, will it update the version of E17 on my PC to the current version of E17?
    A package is a piece of software. E17 is a package, or perhaps a meta package made up of a bunch of packages. alsa is a package. gnome network-manager is a package. Anything that is installed on your system is managed and updated by pacman.
    molom wrote:Is there something similar to synaptic in Arch Linux?
    pacman is the Arch package manager. It does not need a gui front end, though there are a few third party front ends that have been written. I do not know if they are still active.
    molom wrote:
    I'm really eager into knowing about Arch Linux.
    Cheers,
    molom
    Then I also suggest as other have, that you avail yourself of the wiki, especially the beginner's guide which answers several of the questions you've asked.
    Arch Linux is what you make of it, but you have to do the making. Heck, that's 95% of the fun!

  • Is there a tutorial for creating Arch Linux logo?

    as the title says, I am looking for a tutorial on how to create Arch Linux logo using either Gimp/Photoshop/Inkscape
    Any links / videos to one would be nice
    Thanks in advance

    You have the artwork, you just are interested in how it was created?
    There is a thread here somewhere about the new logo - Thayer describes the font selection (from memory), but I don't recall any detail about the icons themselves.
    You could always just work from the originals with trial and error...
    http://www.archlinux.org/art/

  • Arch Linux Schwag

    I've had a few requests for Arch Linux t-shirts and the like.  We don't really have a lot of graphics, so I threw the logo on some shirts/mugs/etc and put it up on cafepress.
    http://www.cafeshops.com/archlinux
    Also, if you have any graphics talent and happen to make an Arch-related graphic, I'd love to have it.

    the idea with mugs is great !! but they are not really cheap in shipping to switzerland :-(
    i have made till now only backgrounds and a bootsplash(will be on my webpage, as soon as possible) for my arch-box ... but maybe i'll find time and a idea to be creative, soon...
    backgrounds:
    http://www.kde-look.org/content/show.php?content=7371
    http://www.kde-look.org/content/show.php?content=7338
    http://www.kde-look.org/content/show.php?content=7330
    they are made with XaoS (in incoming) and Gimp

  • Announcing some new Arch Linux Schwag offerings

    Hey All,
    I wanted to introduce you to some new Arch Linux Schwag offerings I've been cooking up over the past little while.
    I'm currently sold out of case badges, and Simo has faithfully shipped his last order.  I'm trying to think of a way to compensate him, he's done so much work for me on the shipping front and all I ever offered him was dinner, (granted, he's a starving student, and dinner was hopefully much appreciated).  When I reorder stickers, probably in the new year, I will be shipping them myself, from Canada, so domestic prices will be a touch higher.
    Now, onwards to Schwag:
    It's no secret that I'm the odd man out on the tacos vs poutine debate.  I know you all will come around to my way of thinking eventually, but in the meantime, check out the new schwag where you can proudly pick your piece.  I've also added a few other new t-shirt design, mostly as your suggestions.  Check out the new products line at zazzle to place your order:
    http://www.zazzle.com/archlinux/gifts?c … 1284817680
    I think most of you know about the laptop bags, jewellery, and case badges (currently out of stock) selling at: http://schwag.archlinux.ca/
    I've added a few handmade items of my own invention to the mix, including wooden and soapstone sculptures, keychains, and coasters, all featuring our favourite distro's logo:
    http://schwag.archlinux.ca/product/coaster/
    http://schwag.archlinux.ca/product/soapstone_sculpture/
    http://schwag.archlinux.ca/product/sculpture/
    http://schwag.archlinux.ca/product/keychain/
    I'm particularly proud of the soapstone sculptures, they look incredible.  I'm not sure I can give them up.  The keychains will also make great stocking stuffers this Christmas season, so remind your friends to shop Arch Schwag!
    In addition, I would like to announce a preview of the Arch Linux Handbook.  This should be retailing in a couple weeks, and will be available from both CreateSpace and Amazon.com.  The handbook is basically a quick restyling of the epic beginner's guide in the wiki.  You can preview it here:
    https://www.createspace.com/3398103
    That's all for now!
    Dusty

    Runiq wrote:Cool stuff. Like the coasters, and the allanbrokeit shirt is stylish.
    That's Acecero's contribution, as he implies. :-)
    Also, there's a typo in the handbook's headline: "A simple lightweight Linuk handbook."
    Yeah, I know... sadly, I didn't notice it until it was too late to change (the book was set up for publication).  Now I have to wait for a new edition, or pay $40 to put one out now.
    Acecero wrote:Just curious, are you going to release different editions of the Arch Linux Handbook from time to time? I'm assuming the information would need to be updated and the more marketability you will gain anyway.
    I'm hoping to sell between 10 and 50 copies of this edition to pay for the upfront costs before making a new edition.  The more popular it is, the more likely I will be to keep it up to date.
    BTW, if anyone is interested in doing cover art for the second edition, get in touch with me.  I've been told that this cover looks like ass (it was gently, with links to tutorials on design :-D)
    Dusty

  • Arch Linux Logo Competition

    Hello everyone!
    As you may have heard, the Arch logo as we know it is going the way of the dodo!  We are refreshing our graphical identity, and in that spirit we're having a logo competition, open to the entire Arch community!
    We want to know what you think of when you think Arch Linux - what logo do you think would best suit the distribution we've all come to love?
    Submission guidelines are as follows:
    . Anyone can submit as many logo concepts as they wish
    . Entry is freeform, with no need to base it on current logo. Be creative!
    . For the sake of moving the competition along, artists will maintain the rights to their works until the completion of the competition, when we've decided what to do with license issues.
    Per submission, you will need:
    . SVG sources for logo preferred.  If you don't know how to make SVG logos, but have a great idea, visit this thread; foxbunny has graciously stepped up to help with logo concepts.
    . Fill out the following on this submission sheet (courtesy of foxbunny)
    .. Name (or alias)
    .. Main logo areas (white/black/neutral BG)
    .. 2-colour or Black version
    .. 128x128px and 16x16px icon version
    .. Colour palette used
    All other fields are optional - you do not need them to create a submission, and omission of those options will not count negatively against you.
    Submit completed submission sheet attached in an email to travis AT archlinux.org. They will be posted in this thread; two weeks after the date of this post, we will collect all submissions in that thread and judge.
    Judging will be the job of the Developers, and will proceed as follows:
    All submissions will be posted to the [arch-dev] private mailing list, and developers will give their +1 to those logos they like.  They may add a +1 to more than one submission - once all developers are accounted for, the logo with the most +1 votes will win.
    Should multiple logo submissions tie for first place, those entries will be announced to the community, and we will have a community vote on the forums. The logo voted highest in this case will be the winner.
    Additionally, we'll want to use the logo for additional media - CD labels or wallpapers, for example. If the winning author hasn't provided any, they will be given a chance after the competition is over to create this artwork, if they want.  Basically, no need to get it done before the judging, if you want to do it, so don't worry!
    Please note: there are also threads for logo concept discussion and for showing off possible concepts, without entering them into the competition.  Feel free to make use of them.
    Good luck to all participants, and have fun!
    NOTE: There has been some recent concern about entries by developers, since it is the developers themselves voting.  This was never forbidden at the beginning of the contest, and so the rules will not be modified for this halfway through; developer entries are allowed, and will be treated on exactly equal merit as any other entry.  Rest-assured, there is no reason for favouritism in this contest - if we wanted an explicitly developer-made logo, we would have simply done so, so there's no reason to choose a dev's submission simply because they are a dev.
    Last edited by Cerebral (2007-10-30 17:54:16)

    PJ wrote:
    I think this speaks for itself:
    Cerebral wrote:Heh, sorry to say, but it's going to be a little bit longer before we announce anything, I think.  We still have to do a decent trademark search on the top couple of logos to ensure we won't be stepping on anyone else's toes before anything else.
    http://bbs.archlinux.org/viewtopic.php? … 02#p302102
    Yeah, 'cause we can just use any old arch that we want to. These three, for instance, are already taken:
    I think this one (below) is still available, though:
    Last edited by dhave (2007-12-03 04:39:25)

  • [Request] Arch Linux CD Cover

    I have been looking for ages now for a decent Arch Linux CD Cover and Possibly Case, I'm a neat freak and like to have all my disks with labels and I usually keep them in a disk wallet but if anyone want's to make a case as well I'm not complaining! I use 119mm Verbatim DVD's and the prinatble region on them end at the clear center bit and some generic cheapo brand CD-R's that have the printable region right to the center (covering the bit that's usually clear) if that's any help
    Thanks in advance!

    fukawi2 ~ $ pacman -Qo /usr/share/archlinux/cd-labels/archlinux-cd-label-black.svg
    /usr/share/archlinux/cd-labels/archlinux-cd-label-black.svg is owned by archlinux-artwork 1.5-1

  • Iceland Thermal Springs Lava Cave Arch Linux Desktop Wallpaper

    It's been a long time since I've contributed anything to Arch. Very disappointed in myself. Something I've never done is artwork. Never considered myself an artist.
    Daniel Isenmann, on the other hand is an artist, with fantastic photography skills. On seeing his iceland photo I immediately saw potential for an Arch Linux wallpaper. I don't have the gimp skills I would like, but I'm not unhappy with how it turned out:
    http://buchuki.deviantart.com/#/d48n3cf
    I've posted a few resolutions here:
    http://archlinux.ca/art/
    Critiques welcome. ;-)
    Dusty
    Last edited by Dusty (2011-09-03 07:26:11)

    Hey, that's kind of neat. How did you do it?
    Can I suggest that you make the URL less conspicuous/different font and closer to the bottom of the screen?

  • Wallpaper: "Arch Linux garden"

    How do you like Arch Linux wallpaper without a big logo or "Arch Linux" written on it?
    Here I have just used Arch Linux color scheme.
    1280x1024
    1920x1200
    More about artwork and other variations here: http://www.eidor.info/work/darzs/
    It is in latvian language, but there are a lot of pictures.
    Posted also on deviantart: http://eidor.deviantart.com/art/Arch-Li … -167519242

    Not bad... I like that it's dark but with colour. Seems a bit "sad" to me though.

  • New Arch Linux Schwag offerings: Speakers and Notepaper

    It's been a while since anything exciting has happened in the Arch Linux Schwag shops. Laptop stickers seem to be the most popular offering. I'm having trouble getting rid of Arch Linux Pens so they've been discounted to below cost.
    New today are a couple offerings in the Arch Linux Zazzle Schwag store:
    Arch Linux Speakers
    Arch Linux note paper
    Hope you enjoy the new schwag!
    Dusty

    Runiq wrote:Cool stuff. Like the coasters, and the allanbrokeit shirt is stylish.
    That's Acecero's contribution, as he implies. :-)
    Also, there's a typo in the handbook's headline: "A simple lightweight Linuk handbook."
    Yeah, I know... sadly, I didn't notice it until it was too late to change (the book was set up for publication).  Now I have to wait for a new edition, or pay $40 to put one out now.
    Acecero wrote:Just curious, are you going to release different editions of the Arch Linux Handbook from time to time? I'm assuming the information would need to be updated and the more marketability you will gain anyway.
    I'm hoping to sell between 10 and 50 copies of this edition to pay for the upfront costs before making a new edition.  The more popular it is, the more likely I will be to keep it up to date.
    BTW, if anyone is interested in doing cover art for the second edition, get in touch with me.  I've been told that this cover looks like ass (it was gently, with links to tutorials on design :-D)
    Dusty

  • Arch Linux Programming Language Logos

    *update*
    I've created a page for the logos on my site: http://xyne.archlinux.ca/img/arch_linux … age_logos/
    *edit*
    This started out with just the Arch Linux Haskell logo (I really liked the new Haskell logo when I saw it and felt inspired). After encouragement from others I've made some more logos. If you request something, please suggest the appropriate logo for the language (and maybe link to it... preferably to an svg file).
    Haskell
    The cutout and grey colors are based on the new Thompson-Wheeler logo.
    svg: http://xyne.archlinux.ca/img/arch_linux … l_logo.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_2.svg
    These colors are from the haskell.org site logo.
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_3.svg
    Python
    svg: http://xyne.archlinux.ca/img/arch_linux … n_logo.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_2.svg
    Java
    svg: http://xyne.archlinux.ca/img/arch_linux … a_logo.svg
    Ruby
    Son of a dirty bitch was this more complicated then I'd expected. When I found the Ruby logo svg I was thinking "nice, this should be straightforward" until I opened it in Inkscape. The vector image was so dirty I ended up recreating the gem shape manually using the old one as a guide. I don't mind though... it showed me how to do point and path snapping and some other things.
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_2.svg
    with thinner lines:
    svg: http://xyne.archlinux.ca/img/arch_linux … y_logo.svg
    Shell
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_3.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_4.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_7.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_8.svg
    other versions:
    svg: http://xyne.archlinux.ca/img/arch_linux … l_logo.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_2.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_5.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_6.svg
    Tcl
    svg: http://xyne.archlinux.ca/img/arch_linux … l_logo.svg
    C and C++
    I'm not really happy with either of these... plain letters lack symbology and the colors are arbitrary. Anyway, I modelled the C on the impact font (but didn't actually use Impact as it's still a commercial font). The color for the C logo comes from the color used on the cover of the K&R book: http://en.wikipedia.org/wiki/File:Kr_c_prog_lang.jpg
    svg: http://xyne.archlinux.ca/img/arch_linux … C_logo.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … P_logo.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … p_logo.svg
    Perl
    This one was a bit complex too but it taught me how to take a very small image with dirty edges and convert it into a smooth vector image using GIMP and Inkscape.
    The color is from The Perl Foundation's onion logo.
    svg: http://xyne.archlinux.ca/img/arch_linux … l_logo.svg
    TeX & LaTeX
    svg: http://xyne.archlinux.ca/img/arch_linux … x_logo.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … x_logo.svg
    Lua
    svg: http://xyne.archlinux.ca/img/arch_linux … a_logo.svg
    Fortran
    svg: http://xyne.archlinux.ca/img/arch_linux … n_logo.svg
    Scala
    This one uses semi-transparency so silhouette/threshold versions (e.g. all black) may not look good.
    svg: http://xyne.archlinux.ca/img/arch_linux … a_logo.svg
    Lisp
    This is another one that I'm not sure about. I created the parentheses and lambda myself because I wasn't happy with any of the (free) fonts. Suggestions for improvement are welcome.
    *edit*
    I've changed the () following andre.ramaciotti's suggestion. I've also changed the colors.
    The colors and alien are based on Conrad Barski's Lisp logo.
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_2.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_4.svg
    Other versions:
    svg: http://xyne.archlinux.ca/img/arch_linux … p_logo.svg (original (λ) that I created)
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_3.svg ((λ) using bitstream vera)
    ASM
    svg: http://xyne.archlinux.ca/img/arch_linux … m_logo.svg
    PHP
    svg: http://xyne.archlinux.ca/img/arch_linux … p_logo.svg
    Clojure
    svg: http://xyne.archlinux.ca/img/arch_linux … e_logo.svg
    punt
    http://bbs.archlinux.org/viewtopic.php?id=73888
    with semi-transparency:
    svg: http://xyne.archlinux.ca/img/arch_linux … t_logo.svg
    without semi-transparency:
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_2.svg
    LOLCODE
    At Dieter@be's request (this is just a joke)
    svg: http://xyne.archlinux.ca/img/arch_linux … e_logo.svg
    kthxbai
    MySQL
    svg: http://xyne.archlinux.ca/img/arch_linux … l_logo.svg
    PostgreSQL
    svg: http://xyne.archlinux.ca/img/arch_linux … l_logo.svg
    Programming-related:
    Vim
    This one took a while because I had to trace the Vim logo by hand first and then I had to manually adjust several paths to get the right outlines. I think the effort was worth it though.
    svg: http://xyne.archlinux.ca/img/arch_linux … m_logo.svg
    Emacs
    Here's another one that uses semi-transparency (for the "shadows").
    svg: http://xyne.archlinux.ca/img/arch_linux … s_logo.svg
    Git
    These use semi-transparency too.
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_2.svg
    svg: http://xyne.archlinux.ca/img/arch_linux … logo_3.svg
    Miscellaneous
    http://bbs.archlinux.org/viewtopic.php? … 06#p570206
    Last edited by Xyne (2010-12-26 01:21:27)

    milomouse wrote:Oooh... Requests? If so, my vote is for a TCL/TK version, albeit not a very popular choice, heh.
    http://www.demailly.com/tcl/about/logos.html
    or maybe
    http://www.tcl.tk/images/tclp.gif
    I've added a Tcl logo. I used the svg image from Wikipedia because it was the neatest way to do it. I used the colors from the second logo.
    MOD MESSAGE
    Please move this to the artwork forum. I'm so used to posting threads in this forum that I didn't check if it was the best place for it.

Maybe you are looking for