openSUSE Home
  • Downloads
  • Support
  • Community
  • Development
  • Help
  • Login
  • Register
  • Forum
  • Articles
    • Recent Articles
  • Blogs
  • What's New?
  • Advanced Search
  • Home
  • Articles
  • Recent Articles

  1. Welcome! If this is your first visit, be sure to check out the FAQ. You will have to register before you can post in the forums. (Be aware the forums do not accept user names with a dash "-") Also, logging in lets you avoid the CAPTCHA verification when searching . Select Articles, Forum, or Blog. Posting in the Forums implies acceptance of the Terms and Conditions.
  • 1-Beginner

    Sabnzb against your Nextcloud 

    by
    ComputerSmurf
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • View Articles
    Published on 20-Jun-2018 13:38
    1. User Type:
    2. 1-Beginner,
    3. 2-Intermediate

    Here's a guide for openSUSE on how you can install sabnzb against the cloud.
    You can, for example, add and remove ...
    Read More Read More

    Sabnzb in combinatie met Nextcloud 

    by
    ComputerSmurf
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • View Articles
    Published on 20-Jun-2018 13:26
    1. User Type:
    2. 1-Beginner,
    3. 2-Intermediate

    Hier een handleiding voor openSUSE over hoe je sabnzb kan installeren tegen de cloud aan.
    Je kunt dan bijvoorbeeld
    ...
    Read More Read More

    Install Google Chrome 

    by
    swerdna
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • Visit Homepage
    • View Articles
    Published on 16-Jan-2017 04:11  Number of Views: 26894 
    1. User Type:
    2. 1-Beginner

    Some folk like to Install Chrome instead of Chromium (I don't know why).

    If you must, it's easy. Simply search Google for: install google chrome. When you get there, locate "download" near the top of page and select the big button to DOWNLOAD and select the RPM option.

    Suppose the download lands in the Download directory. The path to the file should look like this:
    Code:
    /home/YourName/Downloads/google-chrome-stable_current_x86_64.rpm
    ...
    Read More Read More 8 Comments

    Forum Member Ranks 

    by
    kgroneman
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • View Articles
    Published on 25-May-2016 04:01     Number of Views: 2247 
    1. User Type:
    2. 1-Beginner,
    3. 2-Intermediate,
    4. 3-Advanced
    Article Preview

    Each forum member has a rank "badge" associated with their participation level in our forums. This is a graphical ...
    Read More Read More

    Alternate Screensaver in KDE Plasma 5 

    by
    swerdna
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • Visit Homepage
    • View Articles
    Published on 07-Jun-2015 22:25   
    1. User Type:
    2. 1-Beginner

    Introduction

    The standard KDE configuration tool for screensavers has been dropped from KDE's Plasma 5. I like to have one. Maybe others do too. Here's how to activate and configure xscreensaver.
    ...
    Read More Read More 2 Comments

    Bumblebee - Run entire KDE session on NVIDIA 

    by
    Knurpht
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • Visit Homepage
    • View Articles
    Published on 29-Sep-2013 07:25  Number of Views: 7215 
    1. User Type:
    2. 1-Beginner,
    3. 2-Intermediate,
    4. 3-Advanced

    NB This how to requires a working Bumblebee configuration


    Users of NVIDIA Optimus configurations so far have not been able to run their entire KDE session on the NVIDIA card instead of the integrated Intel. Here's how to make that happen, big thanks to Zeronte | making Linux even simpler
    NB. All is done from a user session, sudo will be used where root permissions are needed.

    1. Add an entry to the Session manager in KDM: ...
    Read More Read More 2 Comments

    Silverlight on openSUSE - HowTo 

    by
    Knurpht
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • Visit Homepage
    • View Articles
    Published on 13-Sep-2013 03:02  Number of Views: 21577 
    1. User Type:
    2. 1-Beginner,
    3. 2-Intermediate,
    4. 3-Advanced

    ​Introduction

    Thanks to the efforts by Richard Bos we can now have Silverlight applications / websites on our openSUSE install, using Pipelight. This project was started mainly to give dutch people access to Magister, a Silverlight based students/parents application a lot of ...
    Read More Read More 22 Comments

    HP Printing using the hplip Package in openSUSE 

    by
    jdmcdaniel3
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • View Articles
    Published on 11-Aug-2013 12:20     Number of Views: 6192 
    1. User Type:
    2. 1-Beginner
    Article Preview

    HP-TOOLBOX is used to Work With Already Installed HP Printers:



    Introduction to the hplip Package:
    ...
    Read More Read More 2 Comments

    Linux Commands Cheat Sheet 

    by
    kgroneman
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • View Articles
    Published on 08-Mar-2013 09:36     Number of Views: 14486 
    1. User Type:
    2. 1-Beginner,
    3. 2-Intermediate

    GUI is great, but sometimes you just need to get down to the command line. For new users trying out Linux for the first time or others that just don't know Unix/Linux much and need a quick reference. This Linux cheat sheet runs you through common and helpful commands you'll need to know as you get comfortable with the command line.

    Code: [View]
    # cheat_sheet.org
    # (C) William Hackmore, 2010
    # The contents of this file are released under the GNU General Public License. Feel free to reuse the contents of this work, as long as the resultant works give proper attribution and are made publicly available under the GNU General Public License.
    # Last updated 8/14/2012
    # Best viewed in emacs org-mode.
    
    * Command Reference:
    ** Basics:
    *** Getting help:
    
    # View the manual for target command
    man [command]
    
    # Get help with a target command (probably the same as above, but not always):
    [command] -h
    
    # In case you forget the name of a command, print possible commands relating to [guess]:
    apropos [guess]
    
    # View index of help pages:
    info
    
    *** Command Line Utilities:
    **** Basic File and Directory Operations:
    # Print current working directory:
    pwd
    
    # Show files in current directory:
    ls
    
    # Show maximum information about all files, including hidden:
    ls -a
    
    # Recurse into subdirectories and list those as well:
    ls -r
    
    # Move/rename a file or directory (be careful that you don't move the source over a destination with the same name):
    mv [source] [destination]
    
    # Delete target forever (be very careful), use -r recursive flag for directories:
    rm [target]
    
    # Copy file or directory:
    cp [source] [destination]
    
    # Mount filesytem:
    mount /dev/[device name] /media/[device name]
    
    # Unmount:
    umount /media/[device name]
    
    # Forensically clone filesystems and do other low-level operations on files. Very dangerous:
    dd
    
    # Work with filesystems and partitions. (Easier, still quite dangerous):
    fdisk
    
    **** System Administration:
    
    # Execute command as an administrator (dangerous, but necessary for system administration tasks):
    sudo [command]
    
    # Become system administrator:
    sudo -s
    
    # Quit system administration:
    exit
    
    # Check distro repositories for software updates:
    sudo apt-get update
    
    # Download and install updates (update first):
    sudo apt-get upgrade
    
    # Search for package in the repositories:
    apt-cache search [keyword]
    
    # Get more detail on one specific package:
    apt-cache show [package name]
    
    # Download and install a package:
    sudo apt-get install [package name]
    
    # View the output of a command in a more convenient format:
    [command] | less
    
    **** Working With Files:
    
    # Print a file in terminal:
    cat
    ...
    Read More Read More 7 Comments

    Remove a Windows 7 Partition for openSUSE Installation 

    by
    kgroneman
    • View Profile
    • View Forum Posts
    • View Blog Entries
    • View Articles
    Published on 07-Mar-2013 11:58     Number of Views: 3648 
    1. User Type:
    2. 1-Beginner

    So you have a computer with Windows 7 installed and you want to install openSUSE instead. How do you get rid of the Windows partition? Windows disk manager won't let you nuke it. Do a Google search and you'll find a lot of different advice, most which want ...
    Read More Read More 2 Comments
    Page 1 of 4 123 ... Next LastLast
  •    RSS

  • Articles by Category

    • New User Docs
    • Applications
    • Connectivity
    • Hardware
    • Install/Boot
    • Multimedia
      • Sound
      • Video
    • Tumbleweed
    • Virtualization
    • Forum Usage
  • Articles by User Type

    1-Beginner (33)
    2-Intermediate (33)
    3-Advanced (23)
  • Useful Links

    SUSE Paste
    Forum Staff Information
    openSUSE world map
  • Publishing Calendar

    December   2019
    Su Mo Tu We Th Fr Sa
    1 2 3 4 5 6 7
    8 9 10 11 12 13 14
    15 16 17 18 19 20 21
    22 23 24 25 26 27 28
    29 30 31
  • openSUSE Forums
  • Archive
  • Privacy Statement
  • Terms & Conditions
  • Top
All times are GMT -7. The time now is 15:22.
© 2019 SUSE, All Rights Reserved.