Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.10 seconds.

  1. [SOLVED] Re: Ubuntu 20.04 + LXDE + XRDP : Blank Desktop (no decorations or menus)

    If I select openbox then xrdp works! Thank you, marking solved.
  2. [SOLVED] Re: Ubuntu 20.04 + LXDE + XRDP : Blank Desktop (no decorations or menus)

    I tried startlxqt which seems to work. I selected mutter but when I click on virtual desktop 2 or 3, the screen stop rendering anything except the desktop background. Any ideas?
  3. [SOLVED] Re: Ubuntu 20.04 + LXDE + XRDP : Blank Desktop (no decorations or menus)

    Ok, I have installed the following instead:


    xrdp
    lubuntu-lxqt-desktop
    lxqt
    tightvncserver


    How do I start lxqt?
  4. [SOLVED] Ubuntu 20.04 + LXDE + XRDP : Blank Desktop (no decorations or menus)

    I have been using lubuntu with LXDE and XRDP successfully with Ubuntu 16.04 and 18.04. After upgrading to Ubuntu 20.04, logging in via rdp produces a single terminal without any windows, window...
  5. Re: Linux on Galaxy (aka Samsung Galaxy Smartphones with DEX)

    I am typing this message on my Galaxy Tab S4 using Dex mode. I only tend to use the ubuntu container when coding with visual studio code. The container is old using ubuntu 16.04.

    As I don't have...
  6. [ubuntu] Manual LVM FS with integrated /boot in root

    I am looking to upgrade our VM fleet from 16.04 to 18.04. During Ubuntu 18.04 server installation, the file system setup forces /boot to be its own partition. This prevents LVM from being used with...
  7. Replies
    0
    Views
    480

    Landscape LDAP or PAM User authentication

    I am the developer of the landscape puppet module. I would like to integrate support for LDAP authentication for user login; however, I am unable to find any documentation that describes how to setup...
  8. Replies
    1
    Views
    931

    [ubuntu] [Ratel Performance] NVidia Screen Tearing

    I have a Ratel Performance with NVidia Geforce GTX 650. I experience screen tearing for both video and games. I have recently upgraded to nvidia's 346 drivers (but was getting screen tearing on 331...
  9. Replies
    11
    Views
    2,259

    [ubuntu] Re: Lemur Fan Replacement

    @drewhops Thank you very much for posting those detailed instructions. I replaced my fan according to your instructions and there were no issues.

    After the install, I powered up my lappy and...
  10. [SOLVED] Re: Nvidia driver 331 on Ubuntu 13.10 with dual Nvidia GPUs

    THANK YOU SO MUCH!!!! This problem is with all nvidia drivers (nvidia-current ie 309, 313, 319, 331). And it exists in Ubuntu 12.04 and 13.10. I actually re-installed my system (was 12.04) to...
  11. [ubuntu] [lemu2] Should I Upgrade from 12.04 to 13.04 or 13.10?

    I have a lemu2 running 12.04 LTS. I see that the system76 driver is only available for 13.04 and 13.10. Should I upgrade? If so, to which version?

    Also why should I upgrade?
    IE, Intel...
  12. Replies
    1
    Views
    444

    [other] Jackal 1U & Juju MaaS

    I am proposing to my company a small Juju/MaaS/Openstack private cloud environment with the option to expand it later. According to this documentation, the minimum required number of "machines" is 6...
  13. Replies
    5
    Views
    761

    [other] Re: Leopard Extreme Storage Options

    I agree with 3Miro. My current setup at home is just what he described (120GB SSD for the OS + 1TB HDD for storage). I think ideally, I want the SSD for the OS and a RAID-1 with 2 2TB HDDs. So my...
  14. Replies
    5
    Views
    761

    [other] Leopard Extreme Storage Options

    I was looking at configuring a Leopard Extreme PC and noticed there is only 1 storage option. The wild dog has 3.

    Is it possible to have a 120GB SSD for the OS and a 2TB HDD (or 2 2TB HDDs in...
  15. Replies
    3
    Views
    726

    Re: Shank2 not saving game progress?

    I am. There are several reviewers on Software Center that seem to have the same problem too.

    Here are people on reddit talking about it.

    A lone post on another forum too.
  16. Replies
    7
    Views
    3,916

    Re: Appindicators Icons

    It worked in Cinnamon but does not work in Unity :( I would expect it to work in gnome-shell since cinnamon is based on gnome-3.

    Anyways, here is the code



    indicator =...
  17. Replies
    0
    Views
    1,051

    Testing for App Indicator Library in C

    How can I test in C for the existence of the app indicator library?

    I found code in python to do this:

    have_appindicator = True
    try:
    import appindicator
    except:
    have_appindicator =...
  18. Replies
    7
    Views
    3,916

    Re: Appindicators Icons

    Thanks. That worked!
  19. Replies
    7
    Views
    3,916

    Re: Appindicators Icons

    How do I set an icon with the full path?
    Here is the function proto-type

    AppIndicator * app_indicator_new_with_path (const gchar *id,
    ...
  20. Replies
    7
    Views
    3,916

    Re: Appindicators Icons

    I haven't tried full paths yet.

    Should applications use their own icons though? Isn't the "point" of appindicators to have a unified look and feel?

    Which brings me to my next question: how...
  21. Replies
    7
    Views
    3,916

    Appindicators Icons

    How should icons be set for Appindicators? Can unique icons be used or should window manager icons be used?

    On the appindicator dev page, it states:


    It seems from this, that programs should...
  22. Replies
    8
    Views
    3,259

    Re: Integrating Application Indicators

    I finially built it!!!!


    gcc example.c `pkg-config --cflags gtk+-2.0` -I/usr/include/libappindicator-0.1/ -o example `pkg-config --libs gtk+-2.0` -L/usr/lib -lappindicator
  23. Replies
    8
    Views
    3,259

    Re: Integrating Application Indicators

    Two steps closer to a working example:

    Compile line

    gcc example.c `pkg-config --cflags gtk+-2.0` -I/usr/include/libappindicator-0.1/ -o example `pkg-config --libs gtk+-2.0`


    In the source...
  24. Replies
    8
    Views
    3,259

    Re: Integrating Application Indicators

    Found a solution:

    gcc -I/usr/include/libappindicator-0.1/ example.c In file included from example.c:1:0:
    /usr/include/libappindicator-0.1/libappindicator/app-indicator.h:33:21: fatal error:...
  25. Replies
    8
    Views
    3,259

    Re: Integrating Application Indicators

    From this Q&A it was suggested to do the following:

    gcc -I/usr/include/libappindicator-0.1/libappindicator/ example.c

    However, I get the following output:

    example.c:1:43: fatal error:...
Results 1 to 25 of 70
Page 1 of 3 1 2 3