Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Getting started with fixing bugs for Linux Post 302998754 by drl on Tuesday 6th of June 2017 09:38:44 PM
Old 06-06-2017
Hi.

If you are not familiar with some *nix tools, you will need to pick up some practice with vi/emacs, and make at the least. You may also need to become familiar with source control: check out/check-in.

I was a: Member of the Process Engineering group chartered with defining, realizing, and maintaining the processes and practices associated with the software lifecycle at Caspian.

I did course development and training for that general process: nightly builds, release packaging, etc. Development, including design and debugging, was not a trivial activity. I also did training in shell, perl, regular expressions, etc.

At that shop each developer checked out a piece of the system and worked on it. When it was ready to go, the code was checked in. The nightly build and tests were done on a separate hardware system based on the current state of the system with every developer's contribution. Extensive records were kept for bug tracking.

If you are interested in diving deep into Linux, you might appreciate the structure of Debian development -- I use Debian for my main activities currently.

You can read about Debian maintenance and development -- all done by volunteers world-wide -- at Debian Developer's Reference

It is also not a trivial activity.

You could certainly do some, perhaps even much, of this kind of work on your own in an isolated virtual system. For example, suppose you wanted to work on utility ls for your own purposes. You easily could get the source, modify it, and test it in a VM. However, working on real bugs, for example, might be far more interesting

Best wishes ... cheers, drl
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Is it a bugs for find command? :(

Hi! When i am trying to use find command to seacrh files in current directory, it help me to search for it sub-directory also. Is there anyway to avoid it? I am using unix operating system. My friend told me that only linux did handle this, is it true? (4 Replies)
Discussion started by: AkumaTay
4 Replies

2. UNIX for Dummies Questions & Answers

Just started linux any advice??

well i just got into this and really dont know anything so if anyone has any reccomendations like books/sites/forums/or just general advice or if anyone wants to help me get started i would really appreciate it thank you very much (6 Replies)
Discussion started by: Necrons
6 Replies

3. Solaris

Bugs with clock()

Hi there!!! Need your help in solving some tricky problems. Since clock() as such is buggy on SUN OS 5 we have started using gettimeofday() in our RTOS applications based on Solaris 9. The problems we actually encountered previously were - the applications kind of freeze/hang eternally on... (1 Reply)
Discussion started by: smanu
1 Replies

4. Linux

fixing with sed

I am trying to replace the value of $f3 but its not working . I don't know what I am missing here . cat dim_copy.20080516.sql | grep -i "create view" | grep -v OPSDM002 | while read f1 f2 f3 f4 f5 f6 f7 f8 f9 do echo " $f3 " sed -e... (13 Replies)
Discussion started by: capri_drm
13 Replies

5. UNIX for Beginners Questions & Answers

Bugs in my new Ubuntu installation

I recently bought a new HP Spectre x360 laptop and installed Linux (Ubuntu 16.04 LTS 64 bit) for the first time. I am seeing various bugs. I don't know if the problems are due to: (a) Hardware problems with the new laptop. (b) Software issues, i.e. Ubuntu not working with the other... (7 Replies)
Discussion started by: twelth_hour
7 Replies

6. Red Hat

What are Linux configuration changes required after a cloned VM Server is started?

Dear Expert Users, VMware Admin Tool is used to create a "clone" of an existing VM RHEL Server. Now, I have a Project where a cloned VM Server image is started for run . Please share what are all configuration changes required to ensure this runs fine ? I will be grateful for quick and... (2 Replies)
Discussion started by: schandrakar1
2 Replies
Config::Model::Debian::Dependency(3pm)			User Contributed Perl Documentation		    Config::Model::Debian::Dependency(3pm)

NAME
Config::Model::Debian::Dependency - Checks Debian dependency declarations VERSION
version 2.021 SYNOPSIS
use Config::Model ; use Log::Log4perl qw(:easy) ; use Data::Dumper ; Log::Log4perl->easy_init($WARN); # define configuration tree object my $model = Config::Model->new ; $model ->create_config_class ( name => "MyClass", element => [ Depends => { 'type' => 'leaf', 'value_type' => 'uniline', class => 'Config::Model::Debian::Dependency', }, ], ) ; my $inst = $model->instance(root_class_name => 'MyClass' ); my $root = $inst->config_root ; $root->load( 'Depends="libc6 ( >= 1.0 )"') ; # Connecting to qa.debian.org to check libc6 versions. Please wait ... # Warning in 'Depends' value 'libc6 ( >= 1.0 )': unnecessary # versioned dependency: >= 1.0. Debian has lenny-security -> # 2.7-18lenny6; lenny -> 2.7-18lenny7; squeeze-security -> # 2.11.2-6+squeeze1; squeeze -> 2.11.2-10; wheezy -> 2.11.2-10; sid # -> 2.11.2-10; sid -> 2.11.2-11; DESCRIPTION
This class is derived from Config::Model::Value. Its purpose is to check the value of a Debian package dependency for the following: o syntax as described in http://www.debian.org/doc/debian-policy/ch-relationships.html o Whether the version specified with ">" or ">=" is necessary. This module will check with Debian server whether older versions can be found in Debian old-stable or not. If no older version can be found, a warning will be issued. Note a warning will also be sent if the package is not found on madison and if the package is not virtual. o Whether a Perl library is dual life. In this case the dependency is checked according to Debian Perl policy <http://pkg- perl.alioth.debian.org/policy.html#debian_control_handling>. Because Debian auto-build systems (buildd) will use the first available alternative, the dependency should be in the form : o "perl (>= 5.10.1) | libtest-simple-perl (>= 0.88)" when the required perl version is available in sid. ". o "libcpan-meta-perl | perl (>= 5.13.10)" when the Perl version is not available in sid Cache Queries to Debian server are cached in "~/.config_model_depend_cache" for about one month. BUGS
o Virtual package names are found scanning local apt cache. Hence an unknown package on your system may a virtual package on another system. o More advanced checks can probably be implemented. The author is open to new ideas. He's even more open to patches (with tests). AUTHOR
Dominique Dumont, ddumont [AT] cpan [DOT] org SEE ALSO
Config::Model, Config::Model::Value, Memoize, Memoize::Expire perl v5.14.2 2012-11-09 Config::Model::Debian::Dependency(3pm)
All times are GMT -4. The time now is 10:43 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy