"Linux with an extra 32 bits" wallpaper

I made this for myself, as there seem to be no shortage of wallpapers proclaiming what distro you use, but not many for your CPU architecture.
http://forum.archlinux.co.uk/download/f … &mode=view

xd-0 wrote:Nice wallpaper, very clean and minimal.
Mind sharing how you did the mirroring of the text?
I selected all of the text, made a new layer, and filled the selection with a gradient of black fading to transparent. I then flipped the layer vertically, moved it where I wanted, and lowered the opacity.

Similar Messages

  • Linux with 16-bit DDR on ZYNQ

    Hi,
    I want to design a card with a Zynq 7010 but since space is limited, I wanted to put only 1 chip of DDR3 (4Gnit) x16-bit.
    Are there any restrictions with running Linux with only x16-bit wide of DDR3? Could not find any documentation/forum about this, if someone else tried it.

    Gnit is unknown to me, but using 16 bit DDR is not an issue at all. Nothing special at all todo xilinx flow takes care of everything, the linux as built will just work.

  • 10g Grid (RAC) on Linux with ASM and OCR?

    I was trying to install 10g on Linux with ASM. The docs are not terribly clear on this, but I'd like to have the Oracle Cluster Registry (OCR) on one of my four ASM disks, rather than dedicate space to OCFS. I have 4 18.2 GB drives setup with ASM now. Is there a way to do this?
    I guess the other thing I could do is to cut the ASM disks into two partitions. One, say 200MB and the other the rest. I'd put OCFS for OCR on the 200MB partition on one of the disks. The large partition on each of the rest of the disks would be dedicated to ASM.
    What am I missing? I feel it must be something obvious. I'd rather have the OCR on the ASM, so that I don't have to deal with it...
    Thanks!
    Jeff

    Hi.
    There shouldn't be a problem with this provided you use a 32-bit OS on the 64 bit machine. RAC doesn't care about the chipset, so long as the same OS is used, but I don't thinkit will support one node on 32 bit and one on 64 bit, since they are actually separate distributions.
    Of course, I've never tried it so I can't be sure :)
    Cheers
    Tim...

  • Linux on 32 and 64 Bits platform ?

    Hi,
    I have read the "Installation Guide for Linux" for XE. The supported, for instant, operating system are clearly defined but not the type of processors.
    My question :
    Does XE work on Linux with a 64 Bits processor ?
    Thanks for your response
    Henri

    question - especially for Mr. Townsend but any Oracle people?
    The Linux 32 bit versus 64 bit issue is interesting, and there is - at least to me - a related issue about processor cores. If I run XE on an Athlon 64X2 under Fedora, it - if I understand - use one core. Can I run XE on a Sun T2000 with a single CPU? That's eight cores. Or fewer. Where is the "single CPU" definition constrained - if it is - by core considerations?
    Still would like to see the x86_64 version :-)

  • Cannot use blowfish with key size 448 bit length

    I can run it with at most 128 bits key size. I have tried it with 256 and 448 bits key size, all are failed. I'm using j2sdk1.4.1_01. How can I fixed this?
    import java.io.*;
    import javax.crypto.*;
    import java.security.*;
    public class MBlowfish {
         String m_sKeyFile = "";
         public MBlowfish (String sKeyFile) {
              m_sKeyFile = sKeyFile;
         * method genKey()
         public boolean genKey () {
              try {
                   KeyGenerator keygen = KeyGenerator.getInstance ("Blowfish");
                   keygen.init (448);
                   SecretKey key = keygen.generateKey ();
                   ObjectOutputStream keyFile = new ObjectOutputStream (
                        new FileOutputStream (m_sKeyFile)
                   keyFile.writeObject (key);
                   keyFile.close ();
                   return true;
              } catch (Exception e) {
                   //System.out.println (e.getMessage ());
                   return false;
         * method readKey (String sKeyFile)
         private SecretKey readKey () {
              SecretKey key = null;
              try {
                   ObjectInputStream keyFile = new ObjectInputStream (
                        new FileInputStream (m_sKeyFile)
                   key = (SecretKey)keyFile.readObject ();
                   keyFile.close ();
              } catch (Exception e) {
                   //System.out.println (e.getMessage());
              return key;
         public byte[] encrypt (String sInput) {
              Provider sunJce = new com.sun.crypto.provider.SunJCE();
              Security.addProvider (sunJce);
              Cipher cipher = null;
              try {
                   cipher = Cipher.getInstance ("Blowfish/ECB/PKCS5Padding");
                   cipher.init (Cipher.ENCRYPT_MODE, readKey ());
              } catch (Exception e) {
                   System.out.println (e.getMessage());
                   return null;
              try {
                   ByteArrayOutputStream bos = new ByteArrayOutputStream ();
                   ByteArrayInputStream bis = new ByteArrayInputStream (
                        sInput.getBytes());
                   CipherOutputStream cos = new CipherOutputStream (
                        bos, cipher);
                   int length = 0;
                   byte[] buffer = new byte[8192];
                   while ((length = bis.read(buffer)) != -1) {
                        cos.write (buffer, 0, length);
                   cos.close ();
                   bis.close ();
                   bos.close ();
                   return bos.toByteArray();
              } catch (IOException e) {
                   System.out.println (e.getMessage());
                   return null;
         public String decrypt (byte[] baInput) {
              Provider sunJce = new com.sun.crypto.provider.SunJCE();
              Security.addProvider (sunJce);
              Cipher cipher = null;
              try {
                   cipher = Cipher.getInstance ("Blowfish/ECB/PKCS5Padding");
                   cipher.init (Cipher.DECRYPT_MODE, readKey ());
              } catch (Exception e) {
                   System.out.println (e.getMessage());
                   return null;
              try {
                   ByteArrayOutputStream bos = new ByteArrayOutputStream ();
                   ByteArrayInputStream bis = new ByteArrayInputStream (
                        baInput);
                   CipherOutputStream cos = new CipherOutputStream (
                        bos, cipher);
                   int length = 0;
                   byte[] buffer = new byte[8192];
                   while ((length = bis.read(buffer)) != -1) {
                        cos.write (buffer, 0, length);
                   cos.close ();
                   bis.close ();
                   bos.close ();
                   return new String(bos.toByteArray());
              } catch (Exception e) {
                   System.out.println (e.getMessage());
                   return null;
         public static void main (String args[]) {
              MBlowfish m = new MBlowfish ("BlowfishKey.ser");
              boolean result = m.genKey ();
              if (result) {
                   System.out.println ("OK");
              } else {
                   System.out.println ("Fail");
              byte[] baEncrypted = m.encrypt ("Hello this is a test message.");
              System.out.println (m.decrypt (baEncrypted));
    }

    Hi vorrarit,
    sorry I couldn't help you. I tried your code one-to-one on my system and everything worked fine, which means that your configuration is somewhat messy.
    BTW I read a little about jce and java 1.4.x (for I have java 1.3.06 and extra jce package), the documentation says, the SUN JCE providers are statically preconfigured, so a Security.addProvider(..) is not necessary. Have a look in the java.security file and check if the sun provider is contained. Are you sure, your runtime version points to the directory where the jce is installed, maybe you had installed other java-versions and the pathes got mixed up?
    Good luck,
    sebastian

  • A VERY Easy Tutorial on doing a clean install of Arch Linux with Gnome

    is there anyone who could help me test Arch Linux with Gnome DE?

    The pacman bit is new, and has already been solved: [SOLVED] pacman update fails: gcc requires gcc-libs=4.7.0-3
    Just press "N" and you'll see that pacman will be on the list.
    Welcome to the forums.
    Edit:
    Shahe1993 wrote:is there anyone who cou...
    Oh. Feeling a bit busy there, huh? Nevermind.
    Last edited by DSpider (2012-04-12 17:28:18)

  • Problem with recovering data from Bit Locker enabled hard disk with bad sectors

    Hi,
    I have Lenovo T430 laptop with Windows 7 and Bit Locker enabled hard disk. While working I encountered blue screen error multiple times. After some time, the laptop stopped to boot by itself and started showing error 'A disk read write error has occurred.
    Press Ctrl+Alt+Del to restart' message. I tried to connect the hard disk to a different PC as a secondary drive and tried to check the disk to recover the data. The 500 GB disk is showing as unallocated space and I am not sure how to recover the
    data from the hard disk. Appreciate your help to recover the data from corrupted hard disk.
    I used the Lenovo Diagnostics tools available in BIOS and it showed 48 bad sector errors on the hard disk. I also used Windows 7 CD and tried auto repair but it looks like it didn't do anything.
    Thanks in advance!

    Hi  SenneVL,
    Since there are 48 bad sectors on your hard disk, this means the system can not boot any more, the data might not be restored in a normal way, you'd better turn to data restore company for help.
    Regards
    Wade Liu
    TechNet Community Support

  • Adobe PDF Printer not working as print driver; 9.5.5 (pro) with Windows 7, 64 bit

    I have installed, repaired, uninstalled and re-installed Acrobat Pro 9.5.5 on a newly formatted SSD with Windows 7, 64 bit on my desktop machine. The program was installed from Acrobat Pro 9.0.0 and updated within the program. I have the program also installed on my laptop, and the Adobe PDF Printer driver is working properly on my laptop.
    On my desktop with the newly formatted SSD, the Adobe PDF printer driver is not working. Note that I am using the printer driver, and not any pdf creation techniques within MS Office or other programs.
    When I go to the Adobe PDF printing preferences on my desktop, I only get a generic, two tab window open. When I print a file to this printer on my desktop machine, I do not get a window opening that asks where to create the pdf or what to name it, and I never see any files created. In MS Word, the Create PDF option under the Acrobat tab works and opens a dialog to ask the name and location to save, and then opens a PDF Maker progress window and properly creates the file. I can also save a file as an .eps or .ps file and use Distiller to create the pdf. However I cannot get the Adobe PDF printer driver in my Devices and Printers to work properly, although it works just fine on my laptop with the same program (Pro 9.5.5) and same Windows version (7, 64 bit).
    Repairing, uninstalling and re-installing does not solve the problem. Acrotray.exe *32 process is running. Any ideas on why this won't run properly on my desktop, but will run on a similarly configured laptop?
    On my laptop, I get a full, (7) tabl menu with all the normal options:

    I found this answer from Deepak Chauhan on another forum, and it solved this problem!
    Try this to add Adobe PDF printer manually on Windows 7, and Windows Vista.
    If windows 7 is Enterprise or better edition: (Admin rights required)
    Start>search for printmanagement.msc and open the print management module
    Expand the print server and expand the computer name to see availbale printers, drivers and printer ports.
    - from printers ensure there's no Adobe PDF printer, if there is delete it
    - go to ports and delete the PDF ports (the ones ending in *.pdf)
    - go to drivers and delete the PDF converter.
    Take note if any errors occur, but continue with the following steps regardless.
    If on windows 7 home edition, just goto start>Devices and Printers and ensure PDF pritner is not listed.
    Then open the registry (if any erors deleting these keys happen, see below)
    1: go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers
    delete any adobe PDF printer subkey present
    2: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors
    delee the PDF port monitor if present
    3: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers
    again delete and pdf printer subkey
    If any erros occur, you need to set the owner of the key to the currently logged in admin user, then ensure that user has full control.
    Do this by right-click the key and selecting permissions, clicking on advanced, then the owner tab.
    Once you've all that has been done, open a command line as administrator.
    Copy and pate the following commands in order
    1: net stop spooler
    2: rundll32.exe setupapi.dll,InstallHinfSection AdobePDFPortMonitor 128 C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf
    3: net start spooler
    4:rundll32.exe printui.dll,PrintUIEntry /if /b "Adobe PDF" /f "C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf" /r "Documents\*.pdf" /m "Adobe PDF Converter"
    That should set back the pdf printer.
    This seemed to provide the link that provided the Adobe PDF Settings tab to the Adobe PDF Printing Preferences that was missing!

  • Java running under linux with crontab

    I'm having a problem:
    i want to run a java program under linux with crontab.
    my classes are in a directory and aren't in a package. i run em by invoking ./start which is a small script that i wrote. The script is in the same dir as the classes and invokes java by "java Main >>logjava.txt " but this doesn't seem to work all i get is an empty logfile
    i need to run the program every day at 0800 so i inserted the following in crontab:
    0 8 * 1-5 /var/"path"/start > logjava (where path is the path to the classes dir)
    if i run the cmdline from anywhere on the prompt i get the result i want. I think it's because the cron runs it from the root dir thus making java unable to find the classes
    Any suggestions would be welcome. or can some1 tell me how to make linux executables from the java (i usually use jsmooth for the windows exe)

    You can execute several commands in the process started by cron. You separate them using semicolons.
    Have you tried a cron entry like this:
    0 8 * 1-5 cd /var/"path";pwd;echo $PATH; ./start > logjavaOr, you may need to make sure the process started by cron gets the same environment as your interactive shells do, by explicitly loading your setup or .login scripts:
    0 8 * 1-5 . $HOME/.setup;cd /var/"path";pwd;echo $PATH; ./start > logjava

  • How can I use hp smart print with win 7 64 bit and ie11

    Is there a way for HP Smart Print 2.7 to work with Windows 7 64-bit  IE 11?

    Hi,
    Unfortunately HP Smart Print software  is only supported for Internet Explorer versions 6 through 9. No more development after that.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Oracle10g Installation problem on Linux with DHCP IP

    Hi,
    I am new to Oracle Products, I have tried to install Oracle 10G on Linux with DHCP IP.
    I got the following warning while installing even though I have loopback interface configured.
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned public IP addresses. However, the primary network interface on the system should be configured with a static IP address in order for the Oracle Software to function properly. See the Installation Guide for more details on installing the software on systems configured with DHCP.
    Please help me in resolving this problem or Can I ignore this message?
    My Server Configurations:
    [root@SQAESMRH5 Oracle_Install_Errors]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:12:3F:79:FA:2C
    inet addr:10.10.121.61 Bcast:10.10.121.2 Mask:255.255.255.0
    inet6 addr: fe80::212:3fff:fe79:fa2c/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:20751998 errors:0 dropped:0 overruns:0 frame:0
    TX packets:19278549 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:2150795393 (2.0 GiB) TX bytes:438232502 (417.9 MiB)
    Interrupt:177
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:12383146 errors:0 dropped:0 overruns:0 frame:0
    TX packets:12383146 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:1965045834 (1.8 GiB) TX bytes:1965045834 (1.8 GiB)
    [root@SQAESMRH5 Oracle_Install_Errors]# cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    #::1 localhost6.localdomain6 localhost6
    127.0.0.1 localhost.localdomain localhost
    #::1 localhost6.localdomain6 localhost6
    [root@SQAESMRH5 Oracle_Install_Errors]#

    This warning means it is not recommended to install Oracle 10g on a DHCP assigned IP address. It could work, but you won't be able to configure Enterprise Manager, since this tool requires a fixed IP address. If possible, have the IP address fixed.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • I am trying to install itunes on my hp laptop with windows vista 64 bit. But when i install i get this error "An error occured during the installation of assembly "Microsoft.VC80.CRT.type="win32"version="8.0.50727.6195".publickeyTOken="1fc8b3 b9a1e18e3b".

    I am trying to install itunes on my hp laptop with windows vista 64 bit. But when i install i get this error   "An error occured during the installation of assembly "Microsoft.VC80.CRT.type="win32"version="8.0.50727.6195".publickeyTOken="1fc8b3 b9a1e18e3b".processorArchitecture="x86""

    Repair your Apple Application Support.
    Control Panel > Programs n Features > highlight AAS, click CHANGE the REPAIR

  • Please, help! After upgrading to Yosemite, my dock has disappeared, along with the dashboard and the wallpaper! Can anyone help? I'm using a MacBook Pro, retina, bought it last year.

    Please, help!
    After upgrading to Yosemite, my dock has disappeared, along with the dashboard and the wallpaper! Can anyone help? I'm using a MacBook Pro, retina, bought it last year.
    Thanks

    Have you been trying to download from the app store? Did you get a message?
    As a suggestion, you might go to an Apple store (genius bar appointment) for help. As far as I know, there should be no charge.
    Barry

  • Please help. my computer is hp with windows vista 32 bit. I can't installe itunes . not the new one or and old one. i have try to uninstalle itunes and reinstall itunes again but it didn't work. please help

    please help. my pc is a hp with windows vista 32 bit. I can't install itunes 10,5. I have try to remove my old itunes and reinstall but it didn't help. I have install itunes 9.1.1 but the itunes library can't be read because it is on a new itunes. I hope someone can help. I'm lost.

        Deauthorize all of your computers and authorize the computers you use.
        http://support.apple.com/en-us/HT6283
      A new Mac comes with 90 days of free tech support from AppleCare.
      AppleCare: 1-800-275-2273
    Best.

  • Flash player 11.0.1.152 installation problem with Windows Vista 64-Bit

    Hello,
    I just can't get Flash Player to install on my computer with Windows Vista 64-Bit - doesnt matter if I try with Firefox, Opera or IE (I usually use Firefox).
    The download isn't a problem, but when I start the downloaded .exe, this file just disappears from my download folder and nothing happens - besides starting a process called install_flashplayer11x32_mssd_aih_3.exe, which does nothing. The usual installation popup never appears. After that I can't try starting the installation again, until disabling the process via task manager ("Only a single instance of this application may run"). Doesn't matter if I try the download and installation with or without "McAffe Security Plus" btw - same result.
    I never had such a problem before - Flash Player 10.3 was and is no problem to install and use.
    I have tried all the measures suggested in the troubleshooting section on the official site, including the advanced troubleshooting measures (uninstall old version, run as administrator, disabling software firewalls, disabling virus scanner etc.). Nothing helps.
    I don't got those problems with my laptop running Windows 7 - just my desktop computer with Vista 64-Bit.
    Any help would be greatly appreciated.

    Try using the installers from the links in http://forums.adobe.com/thread/909550
    P.S. topic moved to the Installation section of the forum.

Maybe you are looking for