- 博客(42)
- 资源 (9)
- 收藏
- 关注
原创 让Solaris启动到文本登陆界面
正常安装下,Solaris启动后会弹出Java Desktop Login的图像登陆界面,但有些情况下,字符登陆界面是非常需要的,比如如果由于显卡驱动原因,图形系统无法显示,那么可以先登陆字符界面,安装驱动或Xorg设置。在故障情况下,当系统boot到grub菜单时,添加 "-s"到unix行,使系统启动到单用户模式。在单用户模式下:#svcadm disable cde-login重新启动。
2007-09-27 10:02:00
1743
原创 打开Solaris的串口输出
编辑grub的配置文件menu.list (/boot/grub/menu.lst)# To enable grub serial console to ttya uncomment the following lines# and comment out the splashimage line below# WARNING: dont enable grub serial console w
2007-09-27 09:42:00
2599
原创 root远程登陆Solaris系统
这是出于安全的考虑, Solaris不允许root远程登陆,推荐使用用普通用户登录,再su执行超级用户的操作。如果要去除这个限制,可以采用下面的方法:编辑/etc/default/login 把 CONSOLE=/dev/console 这行注释掉,变成 #CONSOLE=/dev/console
2007-09-26 14:08:00
2319
原创 在Solaris上配置宽带连接
Plug an Ethernet cable into the machine, and look in /var/adm/messagesfor the "link up" notice:banff[157]% grep "link up" /var/adm/messagesSep 14 08:53:49 banff bge: [ID 801725 kern.info] NOTICE: bge0
2007-09-25 21:15:00
626
原创 在Solaris上mount Window文件系统
Mount NTFS partition in Solaris In multiboot system if your have Windows with NTFS filesystem and you wanted read-only support this utlity can mount the NTFS filesystem in Solaris. This project h
2007-09-25 21:13:00
1467
原创 设置Solaris DomU的远程桌面环境
How to Set Up VNC You can set up VNC to provide a domU graphical login. Enable sshd tcp port forwarding. Install VNC (this example is tightvnc) Set up VNC to auto start on bo
2007-09-25 20:26:00
919
原创 从blatwave.org上安装Solaris VNC
This article is originally posted at http://blog.chinaunix.net/u1/41699/showart_381650.html. VNC is a remote control software which lets you see and interact with desktop applications across the netwo
2007-09-25 20:25:00
787
原创 安装Solaris后必须要做的十件事情
Complete the Solaris installationThis is a list of tasks that you might want to execute after finishing the initial Solaris installation. Create a home directory for root and assign bas
2007-09-23 20:28:00
1693
原创 UNIX makefile中的=和:=
The Two Flavors of Variables There are two ways that a variable in GNU make can have a value; we call them the two flavors of variables. The two flavors are distinguished in how they are defined an
2007-09-20 17:10:00
873
原创 如何写makefile
How to write a MakefileIntroductionMake is one of the original Unix tools for Software Engineering. By S.I. Feldman of AT&T Bell Labs circa 1975. But there are public domain versions (eg. GNU) a
2007-09-20 16:48:00
977
原创 安装SUN拼音输入法
1. Download and install the SunStudio 11 and CBE 2. Checkout the input method repository, refer to Repository page: $ hg clone ssh://anon@hg.opensolaris.org/hg/nv-g11n/inputmethod
2007-09-20 14:28:00
2069
原创 OpenSolaris uts源代码的makefile结构
Makefile LayoutThis discussion is intended to provide a step-by-step explanation of what targets exist and how they are built by the makefiles. I ignore the platform-specific module architecture be
2007-09-20 14:12:00
1207
原创 向OpenSolaris内核中添加一个系统调用
When I first started in the Solaris group, I was faced with two equally difficult tasks: learning the development model, and understanding the source code. For both
2007-09-20 14:11:00
718
原创 编写OpenSolaris内核模块
On opening day, I chose to post an entry on adding a system call to OpenSolaris. Considering the feedback, I thought Id continue with brief "How-To add to OpenSolari
2007-09-20 14:10:00
873
原创 向Solaris系统添加cron job
cron is a unix, solaris utility that allows tasks to be automatically run in the background at regular intervals by the cron daemon. These tasks are often termed as cron jobs in unix , solaris.
2007-09-20 08:53:00
4011
1
原创 Solaris device driver development reference
System Overview --> The Sun Blade Workstation and Sun Fire Server I/O System Architecture (pdf) --> The PCI Bus and Sun Ultra S
2007-09-12 11:11:00
964
原创 [Linux DMA]DMA-API.txt
Dynamic DMA mapping using the generic device ============================================ James E.J. Bottomley This document describes the DMA API. For a more gent
2007-09-07 15:43:00
1565
原创 [Linux DMA]DMA-mapping.txt
Dynamic DMA mapping =================== David S. Miller Richard Henderson Jakub Jelinek This document describes the DMA mapping system in terms of the
2007-09-07 15:40:00
2161
原创 [Linux Journal]Ten Commands Every Linux Developer Should Know
Ten Commands Every Linux Developer Should Know A few simple utilities can make it easier to figure out and maintain other peoples code.This article presents a list of
2007-09-07 14:31:00
992
原创 [Linux Journal]Power Management in Linux-Based Systems
Power Management in Linux-Based SystemsImplementing power management in any system is a complex task. Heres how to manage your systems transitions from normal run state to power-saving modes.
2007-09-07 14:28:00
1250
原创 [Linux Journal]LinuxBIOS at Four
LinuxBIOS at Four LinuxBIOS is more than a way to boot your Linux box in a few seconds. The new in-demand software for Linux cluster sites also offers a fallback mode that can sa
2007-09-07 14:25:00
1164
原创 [Linux Journal]Understanding Caching
Understanding Caching Architectures that support Linux differ in how they handle caching at the hardware level. Heres how the kernel gets the best possible use out of every cach
2007-09-07 13:03:00
1002
原创 [Linux Journal]Using DMA
Kernel Korner - Using DMA in Linux block device driverDMA makes I/O go faster by letting devices read and write memory without bothering the CPU. Heres how the kernel keeps track of changes that ha
2007-09-07 10:53:00
1046
原创 Solaris x86, Device DMA, and the DDI
Im going to start a monthly blog entry on a DDI subject of your choice... Now that OpenSolaris is available, I can get into some decent detail referencing kernel code when needed. So Im seeking
2007-09-06 13:10:00
852
原创 Writing Solaris Device Driver: Layered Driver Interface
Layered Driver Interface (LDI) The LDI is a set of DDI/DKI that enables a kernel module to access other devices in the system. The LDI also enables you to determine which devices are currently bei
2007-09-06 11:23:00
1063
原创 Writing Solaris Device Driver: Hardening Solaris Drivers
Hardening Solaris Drivers Fault Management Architecture (FMA) I/O Fault Services enable driver developers to integrate fault management capabilities into I/O device drivers. The Solaris I/O fault se
2007-09-06 11:21:00
1598
原创 Writing Solaris Device Driver: Power Management
Power ManagementPower management provides the ability to control and manage the electrical power usage of a computer system or device. Power management enables systems to conserve energy by using le
2007-09-06 11:16:00
881
原创 Writing Solaris Device Driver: Device Context Management
Device Context ManagementSome device drivers, such as drivers for graphics hardware, provide user processes with direct access to the device. These devices often require that only one process at a t
2007-09-06 11:13:00
617
原创 Writing Solaris Device Driver: Mapping Device and Kernel Memory
Mapping Device and Kernel MemorySome device drivers allow applications to access device or kernel memory through mmap(2). Frame buffer drivers, for example, enable the frame buffer to be mapped i
2007-09-06 11:11:00
922
原创 Writing Solaris Device Driver: Interrupt Handlers
Interrupt HandlersThis chapter describes mechanisms for handling interrupts, such as registering, servicing, and removing interrupts. This chapter provides information on the following subjects:
2007-09-06 11:02:00
903
原创 Writing Solaris Device Driver: Device Access - Programmed I/O
Device Access: Programmed I/OThe Solaris OS provides driver developers with a comprehensive set of interfaces for accessing device memory. These interfaces are designed to shield the driver from pla
2007-09-06 09:51:00
771
原创 Writing Solaris Device Driver: Driver Autoconfiguration
Driver AutoconfigurationIn autoconfiguration, the driver loads code and static data into memory. This information is then registered with the system. Autoconfiguration also involves attaching indivi
2007-09-05 16:40:00
966
原创 Writing Solaris Device Driver: Managing Events and Queueing Tasks
Managing Events and Queueing TasksDrivers use events to respond to state changes. This chapter provides the following information on events: Introduction to Events U
2007-09-05 15:51:00
970
原创 Writing Solaris Device Driver: Properties
PropertiesProperties are user-defined, name-value pair structures that are managed using the DDI/DKI interfaces. This chapter provides information on the following subjects: Device Pro
2007-09-05 15:41:00
740
原创 Writing Solaris Device Driver: Multithreading
MultithreadingThis chapter describes the locking primitives and thread synchronization mechanisms of the Solaris multithreaded kernel. You should design device drivers to take advantage of multithre
2007-09-05 15:34:00
774
原创 Writing Solaris Device Driver: Kernel and Device Tree
Solaris Kernel and Device TreeA device driver needs to work transparently as an integral part of the operating system. Understanding how the kernel works is a prerequisite for learning about device
2007-09-05 15:33:00
1085
原创 Writing Solaris Device Driver: Basic
Device Driver BasicsThis section introduces you to device drivers and their entry points on the Solaris platform.What Is a Device Driver? A device driver is a kernel module that is responsible
2007-09-05 15:14:00
894
原创 [Solaris内存管理]页表格式
PDE and PTE (32bit, 4-Kbyte pages)PDE (32 bit, 4-MByte pages)CR4.PAE = 1. Page Size: 4KB/2MBLinear Address is still 32bitPaging table entries are increased to 64bits. Entry numbers decreased from 1024
2007-09-04 17:40:00
1130
原创 [Solaris内存管理]段管理和页管理
x86平台上实现了两种页面管理方式:分段,分页。分页方式成为当前的主流,而为了和以前技术的兼容性,分段仍然存在,但现代操作系统都通过一定的方式“弱化”了分段管理:
2007-09-04 17:23:00
760
最近在OpenSolaris社区的discuss mail list上大家在热烈地讨论是否需要为OpenSolaris开发一个开源的anti-virus软件,大牛们似乎不屑讨论这个项目,而是认为真正的安全来自于管理者为自己的系统指定一
2007-06-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人