Sponsored Content
Full Discussion: Synaptic
Operating Systems Linux Debian Synaptic Post 302944155 by orange47 on Saturday 16th of May 2015 08:10:44 AM
Old 05-16-2015
I don't quite understand. Have you tried aptitude, its also very good?
 

4 More Discussions You Might Find Interesting

1. Ubuntu

upgrading from ubuntu 710 gusty to the new release from synaptic ?

i notice when i was in the synaptic manage the other day that the new release KDE 4 was there can i upgrade from synaptic or do i need to download the files from a different source? currently running kubuntu 7.10 gusty and haven't seened any kind of updates come through that gave me the option to... (1 Reply)
Discussion started by: ksnovice
1 Replies

2. Linux

How to run User-mode Linux installed with synaptic package manager in Ubuntu 10.10

I have installed user-mode linux kernel in Ubuntu 10.10 with the help of Synaptic package manager. But I'm not getting how to run it. If we install it manually, we've to run it using the executable binary file. But here, I'm unable to locate any such file. Please help.... Thanking You.... ... (0 Replies)
Discussion started by: rohitadeshmukh1
0 Replies

3. UNIX for Dummies Questions & Answers

Unable to install from synaptic package manager

i am not able to install anything from package manager . (2 Replies)
Discussion started by: upvan111
2 Replies

4. UNIX for Beginners Questions & Answers

Debian Synaptic locked up after trying to install Dropbox

Hello, I am running LinuxCNC (Debian Wheezy), I tried to install Dropbox via Synaptic Package Manager, apparently Dropbox is a dead stick on that OS. Now Synaptic is unable to start with the following message: E: dpkg was interrupted, you must manually run 'dpkg --configure -a'... (0 Replies)
Discussion started by: awg
0 Replies
INTRO(9)						   BSD Kernel Developer's Manual						  INTRO(9)

NAME
intro -- introduction to system kernel interfaces DESCRIPTION
This section contains information about the interfaces and subroutines in the kernel. PROTOTYPES ANSI-C AND ALL THAT Yes please. We would like all code to be fully prototyped. If your code compiles cleanly with cc -Wall we would feel happy about it. It is important to understand that this isn't a question of just shutting up cc, it is a question about avoiding the things it complains about. To put it bluntly, don't hide the problem by casting and other obfuscating practices, solve the problem. INDENTATION AND STYLE
Believe it or not, there actually exists a guide for indentation and style. It isn't generally applied though. We would appreciate if people would pay attention to it, and at least not violate it blatantly. We don't mind it too badly if you have your own style, but please make sure we can read it too. Please take time to read style(9) for more information. NAMING THINGS
Some general rules exist: 1. If a function is meant as a debugging aid in DDB, it should be enclosed in #ifdef DDB #endif /* DDB */ And the name of the procedure should start with the prefix DDB_ to clearly identify the procedure as a debugger routine. SCOPE OF SYMBOLS
It is important to carefully consider the scope of symbols in the kernel. The default is to make everything static, unless some reason requires the opposite. There are several reasons for this policy, the main one is that the kernel is one monolithic name-space, and pollution is not a good idea here either. For device drivers and other modules that don't add new internal interfaces to the kernel, the entire source should be in one file if possi- ble. That way all symbols can be made static. If for some reason a module is split over multiple source files, then try to split the module along some major fault-line and consider using the number of global symbols as your guide. The fewer the better. SEE ALSO
style(9) HISTORY
The intro section manual page appeared in FreeBSD 2.2. BSD
December 13, 1995 BSD
All times are GMT -4. The time now is 08:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy