Questions tagged [suse]

SUSE is a commercial Linux distribution. OpenSUSE is the open-source variant. SUSE Linux Enterprise Server(SLES) is the enterprise variant.

SUSE Linux is a computer operating system. It is built on top of the open source Linux kernel and is distributed with system and application software from other open source projects. The first version appeared in early 1994, making SUSE one of the oldest existing commercial distributions. It is known for its YaST configuration tool.

Official Site: https://www.suse.com/

519 questions
2
votes
0 answers

build gcc4.9 under suse10 some vars was not declared

I build gcc4.9 with the following step wget ftp://mirrors.kernel.org/gnu/gcc/gcc-4.9.0/gcc-4.9.0.tar.gz tar -zxvf gcc-4.9.0.tar.gz cd gcc-4.9.0 ./contrib/download_prerequisites cd .. mkdir gcc-build-4.9.0 cd gcc-build-4.9.0 ../gcc-4.9.0/configure…
Sleepwom
  • 227
  • 6
  • 15
2
votes
1 answer

install gcc 4.9 under suse10, "checking whether to enable maintainer-specific portions of Makefiles... no"

I install gcc 4.9 by the following step wget ftp://mirrors.kernel.org/gnu/gcc/gcc-4.9.0/gcc-4.9.0.tar.gz tar -zxvf gcc-4.9.0.tar.gz cd gcc-4.9.0 ./contrib/download_prerequisites cd .. mkdir gcc-build-4.9.0 cd gcc-build-4.9.0 ../gcc-4.9.0/configure…
Sleepwom
  • 227
  • 6
  • 15
2
votes
0 answers

How to remote access Aster express through ubuntu?

I am using latest version of Aster express edition form Teradata and configured, which is run only in windows so create a virtual machine of windows on my Ubuntu machine, and its perfectly working in SUSE (using Aster Client Tools - ACT) and windows…
Kaushal
  • 3,237
  • 3
  • 29
  • 48
2
votes
1 answer

Why does the “who” command not show “username” logged from "root" user?

Well i use SUSE11, Linux machine. when logged to a Linux machine as root user, sne-91:~ # pwd /root and then i log in to a particular user using "su - " cmd. sne-91:~ # su - sunil <1000 sne-91 [sunil] :/home/sunil>echo $USER sunil then "who" cmd…
Sunil Kumar
  • 367
  • 2
  • 5
  • 19
2
votes
3 answers

rpmlib(FileDigests) dependency error on SuSE

Doing a yum install A-3.6.0 on both SuSE 11.2 (64-bit) and CentOS 5.8 (64-bit) the following installation requirements error popped up: error: Failed dependencies: rpmlib(FileDigests) <= 4.6.0-1 is needed by A-3.6.0-1.noarch …
user2569618
  • 517
  • 3
  • 16
  • 42
2
votes
1 answer

Websphere MQ - error with reason code 2042 on a get

We're getting an intermittent error on a ImqQueue::get( ImqMsg &, ImqGetMessageOptions & ); call with reason code 2042, which Should Not Happen™ based on the Websphere documentation; we should only get that reason code on an open. Would this error…
John Bode
  • 119,563
  • 19
  • 122
  • 198
2
votes
1 answer

Is it possible to install Open Source Chef Server on Suse Enterprise Linux 11 SP3?

from http://docs.getchef.com/chef_system_requirements.html I understand that the requirements for Open Source Chef Server are either "Enterprise Linux (e.g. Red Hat Enterprise Linux, CentOS)" or "Ubuntu". But looking here…
Ronald
  • 2,864
  • 3
  • 25
  • 36
2
votes
2 answers

How do I sort a file after a certain row in bash?

I am trying to sort a file and store the output into a tmp file. This is what my file looks like: this_is_my_file (with no extension) Names Last_Name_Initial --- Alex G Nick D Jon J Cain V Anderson S Chris W I know the command to sort…
Redson
  • 2,098
  • 4
  • 25
  • 50
2
votes
1 answer

Not able to install any package on SUSE 11

For some reason I need to use SUSE Linux Enterprise Server 11 (i586) distro with SP2. I need to install package named swig on it. Every time I install or update any package I get this error message: File '/repodata/repomd.xml' not found on medium…
Kapil
  • 836
  • 2
  • 8
  • 20
2
votes
0 answers

How to configure NAT with LXC containers in SLES?

We are trying to configure NAT and Bridge with LXC container inside the SLES 11.3 . We are getting error unable to start the conatiner Following is the screen dump. br0 is the external network and br1 is the internal network brctl show bridge…
Saravana
  • 303
  • 1
  • 6
  • 12
2
votes
0 answers

Linux: unable to retrieve process name from pid via ioctl

I'm trying to retrieve retrieve process name from pid via ioctl, this is the C code: #include #include #include #include #include #include #include #include…
2
votes
1 answer

Error installing any gem packages ::: gem install rails or gem install dashing

Receiving below error while installing any package and I using gem install rails Building native extensions. This could take a while... ERROR: Error installing rails: ERROR: Failed to build gem native extension. /usr/bin/ruby…
Sunnx
  • 71
  • 12
2
votes
1 answer

Unable to resolve dependency: dashing (= 1.3.1) requires sass (>= 0) on RubyGems

Error while trying to Install Dashing using Ruby Gems on SUSE linux.... sudo gem install -V dashing --source http://rubygems.org ERROR: While executing gem ... (Gem::UnsatisfiableDependencyError) Unable to resolve dependency: dashing (= 1.3.1)…
Sunnx
  • 71
  • 12
2
votes
3 answers

How do you programmatically - or from CLI - rotate a PDF?

What I need to be able to do is to rotate a PDF clockwise or counter clockwise either programmatically or from the CLI. I have spent considerable time researching and attempting to rotate PDFs with GhostScript (as GS is already installed for other…
James B.
  • 23
  • 3
2
votes
1 answer

Can I use a single "pthread_mutexattr_t" attribute to initialize two different mutexes?

I am using two mutexes in my C program, I want both of them to be of type: PTHREAD_MUTEX_ERRORCHECK Other properties of both mutexes to be set as default. Can I use a single pthread_mutexattr_t mutexAttrib; with its "type" property set as above,…
0xF1
  • 6,046
  • 2
  • 27
  • 50