由买买提看人间百态

topics

全部话题 - 话题: address
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
b****i
发帖数: 619
1
来自主题: Internet版 - 请问怎样计算network address?
what is the network address for a host with the ip address 201.100.5.68/28?
A. 201.100.5.0
B. 201.100.5.32
C. 201.100.5.64
D. 201.100.5.65
E. 201.100.5.31
F. 201.100.5.1
//bow
r*****e
发帖数: 52
2
来自主题: Internet版 - 请问怎样计算network address?
/28 network has 16 addresses each. so the network address is the next
number lower than 68 but divisible by 16, which is 64.
o***n
发帖数: 72
3
finally sick of getting tens of spam
everyday. their email address should be faked?
because I tried replying to them
and always bounced back.
So is it possible to block those emails?
I know somebody has a program to do so.
basically check how much the file is and
if it too large, the email will be returned.
guess I want a program that can check the email
title or address, and then decide to bounce back
their emails.
d******g
发帖数: 1
4
laptop was stolen.
i am wondering if i can find the MAC address of other machines on the internet
to see anyone has my MAC address.
Thanx
w*******p
发帖数: 253
5
最近租房子,碰到一个骗子,用gmail给我发信,我看不到他的IP address。不知道哪
些email provider可以隐藏发信人的IP address?
w*m
发帖数: 1806
6
来自主题: Linux版 - How to change mac address?
【 以下文字转载自 Unix 讨论区 】
发信人: wdm (WDM), 信区: Unix
标 题: How to change mac address?
发信站: BBS 未名空间站 (Sun Feb 14 22:37:08 2010, 美东)
参照这篇文章,更改了mac,可是启动的时候总是提示
ifconfig bad address ic0
http://doc.chinaunix.net/server/200706/178101.shtml
check后,发现mac依旧
OS: Solaris 9
any idea?
v*****r
发帖数: 1119
7
不像 windows, 32bit memory limit 对 Linux 没有太大的影响。
Linux 下的 32bit memory limit 是 4G Virtual address space per process, low
memory 840M reserved for kernel, PTE etc. 实际的 physical memory 可以扩展到
64GB depending on hardware platform.
所以在 Linux 下,32 bit 唯一的问题就是 process 不能一口咬 大于 4G 的 memory
, 但也有 workaround.
S*A
发帖数: 7142
8

别人回答这个了,我同意 :-)
说的对啊。
关键是我觉得你不熟悉 process virtual memory mapping 这个概念。
在 linux 里面, /proc//maps
就说明这个 process 的 virtual memory 是如何 map 的。
你可以看到当前的 [heap] 在什么 virtual address range.
brk 可以调整那个 [heap] 的结束地址。
里面还有 [stack] 是 stack 的 virtual address.
S*A
发帖数: 7142
9

这个都对。
这个不对。这个表明你还没有理解 kernel 的 virtual memory 是如何工作的。
没有用上的 virtual address 是 page table 是空的。你如果访问
就直接 signal 11 segfault. 这个 virtual address 有没有用上是
vma 那层管理的。 每个 process 有自己 vma list.
kernel 可以 swap 几乎任何 heap 甚至 mmap 里面的内存页。kernel 把
那个页里的内容写到 file backing 里面就可以把那个 page 偷走了。
被偷的 vma 里面换成 empty page, 访问的时候产生 page fault.
在 page fault handler 里面把那个页的原来内容再从文件里恢复
出来。这个就是 swapping. 恢复的那个 physical page 完全可能和
原来上一次的 physical page 不是同一个。只是内容一样。对 process
来说是透明的。
b***y
发帖数: 2799
10
来自主题: Programming版 - [合集] address of array
☆─────────────────────────────────────☆
ruisher (aa) 于 (Fri Sep 2 21:58:32 2005) 提到:
Suppose I have a class which has an array as a private member, if I want to
get the address of the array,
class A{
public: ...
.....
//if I want to get the address of the array
float & get_xyz { return xyz[0];}
or
float * get_xyz { return xyz;}
what's the difference between this two?For the first one, why can't I use
const sth like "float & get_xyz const{ return xyz[0];}
.......
private:
float xyz[
s*******e
发帖数: 664
11
☆─────────────────────────────────────☆
SLWY (松林物语) 于 (Thu Oct 22 00:13:02 2009, 美东) 提到:
I don't quite understand.
when i am reading os textbook, it says the DOS bind address
at compile time. So when a DOS excecutable file is copy/pasted to another ma
chine, it can not run because the address might not be available at the new
machine.
Who can explain this? Really confused...
Thanks!
☆─────────────────────────────────────☆
Xentar (思考猪) 于 (Thu Oct 22 00:21:41 2009, 美东) 提到:
Have you used
c*********t
发帖数: 2921
12
【 以下文字转载自 Linux 讨论区 】
发信人: cookiesweet (apple), 信区: Linux
标 题: 问一个跟 memory (process address space) 的有关的问题
发信站: BBS 未名空间站 (Sat Dec 18 18:40:01 2010, 美东)
在Linux下,一个process运行的时候address space都会有stack section, data
section, test section, bss section,等等,以及由 malloc()所得到的 memory.
我的问题是,malloc()到底是从系统的什么地方得到的动态memory?是不是从所谓的
heap 得到的?
如果是这样,是不是 heap 就是整个系统共有的 memory pool,各个process可以从这里
动态的得到memory via malloc()?
谢谢!
t****t
发帖数: 6806
13
mlock and mlockall doesn't get you physical address at all.
D*******a
发帖数: 3688
14
unless there is a kernel exploit that gets you to ring 0...

translated
address
g**w
发帖数: 969
15
在windows下,可以用windbg转换,还可以看physical address的内容
不过实在kernel debugger mode下
c********p
发帖数: 1
16
来自主题: Security版 - A simple question about IP address?
If I surf some other websites throught a free email based
website, such as hotmail, then the Administrators of these
websites can find my IP addrress or hotmail's IP address?
How can I hide my IP address, through Proxy or other
methods?
Thanks.
o*****e
发帖数: 23
17
【 以下文字转载自 Programming 讨论区,原文如下 】
发信人: oldbare (bearhill), 信区: Programming
标 题: how can i use c or c++ to get the Ethernet card address
发信站: The unknown SPACE (Thu Mar 8 01:13:03 2001) WWW-POST
Thanks a lot first.
I use UNIX system. And I need to find the 48 bits of ether
net address.
a**a
发帖数: 63
18
来自主题: Unix版 - get MAC address?
Can someone help me how to get MAC address of my machine (Solaris 9 running on
PC)? When I installed the machine, it was "not internet connected". When I
type in "ifconfig -a", no MAC address was there.
Thanks a lot!
y********o
发帖数: 291
19
来自主题: Windows版 - IP address problem
My computer got a weird problem. I am using broad band provided by my school.
My PC was assigned an IP address automatively by DHCP. When things are right,
the IP address should be 160.***.***.***. However, quite frequently, the IP I
got is 192.***.***.*** and it is not working (I cannot go anywhere on internet
). At the same time, my wife's apple has no problem using the same network (
two outlet from one internet switch). Windows cannot detect any problem with
the connection. Does anybody have
b****e
发帖数: 906
20
法律上的permanent address的定义是什么?临时过来半年住的地方是不是也叫做
permanent address?
P*****s
发帖数: 375
21
What is Mobile Device Address for google voice number?
When I setup cell phone number at Discover credit website,
it asks me what's is your Mobile Device Address ?
Thanks a lot!
w*******y
发帖数: 60932
22
This is my first post! I searched for this deal and couldn't find it already
posted before...
Dropbox is making the transition back to school easy by giving everyone with
an .edu email address double the credit for referrals. That's 500 MB per
friend you invite! That goes for everyone you've already referred too.
Link:
https://www.dropbox.com/edu
PS: You need to verify your .edu email address by clicking on the emailed
link.
w*******y
发帖数: 60932
23
Hey everyone, I was surprised to not see this in the history when I did a
search (unless I missed it?), so here it is . I posted this in Hot Deals
because this will help make the occasional Amazon deals even gooder!
Join Amazon Student and get FREE Two-Day Shipping for one year with a free
Amazon Prime membership ($79 value), as well as exclusive offers via e-mail.
There is no cost to join - sign up by providing your school, major, and .edu
address.
Link:
http://www.amazon.com/gp/student/signup... 阅读全帖
w*******y
发帖数: 60932
24
Staples B&M Dollar Deals Coupons ($1AC: stickies & binder clips; $2AC: photo
paper, copy paper, BIC pens, Avery laser address labels, paper clips; $4AC:
Sharpie markers)
$1 after coupon:
Staples Stickies3" x 3" Recycled Yellow Notes, 12/Pack only, product no.
105809.
StaplesSmall Metal Binder Clips, 40/Pack only, product no. 831594.
$2 after coupon:
HP Everyday Photo Paper, 4" x 6", Gloss, 100/Pack only, product no. 518847.
StaplesCopy Paper Select Ream only, product no. 897804.
BICRound SticBal... 阅读全帖
w*******y
发帖数: 60932
25
I haven't received mine yet, as I just signed my SO up. But, I saw that PSN
store update today had the developer application Move.Me for $99.99. You can
use this program to apparently write PC software which utilizes the PS Move
and Eye.
Link:
http://us.playstation.com/ps3/playstation-move/move-me/
"Complimentary Move.me download for academia
Join our Move.me Academic Program to get a complimentary voucher for
downloading Move.me on PlayStation甆etwork . If youre an academic
researcher, faculty ... 阅读全帖
w*******y
发帖数: 60932
26
Staples has the Avery Address Labels for free after Staples Easy Rebate,
1" X 2-5/8" address labels, 750/box
Limit 1 per customer.
w*******y
发帖数: 60932
27
$2 for an AMC TheatresSilver Experience(TM) Ticket ($10 Value). Mailed to
Chicagoland, Rockford, Madison and Milwaukee Addresses Only.
Available: 216
LINK:
Link:
http://www.whereyoushop.com/b/deal/amc-theatres-2d3gt/?utm_camp
Need to Know
NEW subscribers only.
Duplicated accounts will not receive ticket.
AMC Silver Experience(TM) Ticket valid for 1 admission (valid 7 days a week).
Excludes Special Engagements.
1 ticket per subscriber mailed via USPS to the Chicagoland, Rockford,
Madison and Milw... 阅读全帖
T*****n
发帖数: 897
28
【 以下文字转载自 Military 讨论区 】
发信人: Tonyvan (Tony), 信区: Military
标 题: Ombama's address in Town Hall of Shanghai
发信站: BBS 未名空间站 (Mon Nov 16 20:42:17 2009, 美东)
http://www.whitehouse.gov/blog/2009/11/16/full-video-and-photos-presidents-town-hall-shanghai
s*****l
发帖数: 7106
29
【 以下文字转载自 Military 讨论区 】
发信人: sinical (一江春水向东流), 信区: Military
标 题: 7:40pm Obama addressing tax cut: Wealthiest Americans included in extended tax cut
发信站: BBS 未名空间站 (Mon Dec 6 18:48:00 2010, 美东)
Obama: Framework for bipartisan deal would extend all Bush-era tax cuts for
two years and jobless benefits for 13 months.
c**y
发帖数: 802
30
来自主题: Donation版 - donation send to China Embassy NY Address
Sorry, this is the right link to Embassy
http://www.nyconsulate.prchina.org/eng/xw/t434656.htm
Information For Sichuan Earthquake Donations
1. You can make earthquake donations through Chinese Consulate General in
New York in the form of checks. Checks should be written as follows:
Pay to the order of "Chinese Consulate General in New York", For "Earthquake
Relief Donation".
Checks can be sent to the Chinese Consulate General in New York either in
person or by mail. Our mailing address is: Liu
K******2
发帖数: 824
31
Does anybody know Google co-founder Sergey Brin's email address?
I want to make a speech to him.
g8
发帖数: 3784
32
Egyptian Army Takes Charge of Country;
Mubarak to Address Country Shortly
w*********s
发帖数: 2136
33
【 以下文字转载自 Stock 讨论区 】
发信人: whiteclouds (/ 参考消息 /), 信区: Stock
标 题: Obama to address the nation 10:30pm ET; subject not announced - AP
发信站: BBS 未名空间站 (Sun May 1 22:18:50 2011, 美东)
White House: The president to make statement at 10:30pm ET; subject not
announced - AP
b********n
发帖数: 38600
34
Rand Paul Response to the President's State of the Union Address
I speak to you tonight from Washington, D.C. The state of our economy is
tenuous but our people remain the greatest example of freedom and prosperity
the world has ever known.
People say America is exceptional. I agree, but it’s not the complexion of
our skin or the twists in our DNA that make us unique. America is
exceptional because we were founded upon the notion that everyone should be
free to pursue life, liberty, and happines... 阅读全帖
x****u
发帖数: 12955
35

198.### IP is the address for an internal network.
x****u
发帖数: 12955
36

ok. My eyes are not working today.
But 198.#.#.# is a class A IP address. You can find out which organization
owns that ip range, but there aren't enough information to know the
geographic location of the IP just from 198.
x****u
发帖数: 12955
37

There's a tool called Google.
There is a tool specifically for finding IP address ownership called WHOIS
G*********8
发帖数: 10
38
一个朋友的facebook address 信息被别人制成video 传到网上,该怎么办?怎么才能让
他们去掉?
E*****n
发帖数: 7961
c*********e
发帖数: 16335
40
原来milky way只是某个生命的疑似脑神经系统里的一个部分:
Laniakea Supercluster
http://www.nature.com/news/earth-s-new-address-solar-system-milky-way-laniakea-1.15819
b********n
发帖数: 38600
m******8
发帖数: 2153
42
http://www.pinknews.co.uk/2012/07/13/petition-launched-to-addre
A petition has been started to lobby Turkey’s president to address the ‘
honour killings’ of gay and transgender people in his country.
President Abdullah Gul is being petitioned to act against the “systematic
violence and discrimination faced by Turkey’s LGBT community”, the
petition organiser said.
The Care2 petition’s sponsor, Omar Kuddus, told PinkNews.co.uk he was
prompted to act by the news of the killing of a trans woman.
Ear... 阅读全帖
g*********n
发帖数: 808
43
来自主题: Talk版 - who has Obama's email address?
if anyone happens to have Obama or Steven Chu's email addresses, please let
me know.
3X!
T*****n
发帖数: 897
44
【 以下文字转载自 Military 讨论区 】
发信人: Tonyvan (Tony), 信区: Military
标 题: Ombama's address in Town Hall of Shanghai
发信站: BBS 未名空间站 (Mon Nov 16 20:42:17 2009, 美东)
http://www.whitehouse.gov/blog/2009/11/16/full-video-and-photos-presidents-town-hall-shanghai
K******2
发帖数: 824
45
Does anybody know Google co-founder Sergey Brin's email address?
I want to make a speech to him.
s*****l
发帖数: 7106
46
【 以下文字转载自 Military 讨论区 】
发信人: sinical (一江春水向东流), 信区: Military
标 题: 7:40pm Obama addressing tax cut: Wealthiest Americans included in extended tax cut
发信站: BBS 未名空间站 (Mon Dec 6 18:48:00 2010, 美东)
Obama: Framework for bipartisan deal would extend all Bush-era tax cuts for
two years and jobless benefits for 13 months.
l****z
发帖数: 29846
47
July 11, 2012 by Doug Johnson
Well that’s kind of a schizophrenic headline, but how you perceive Mitt
Romney’s address to the NAACP will probably be shaped by what you read
about it.
Newsbusters notes that there were a smattering of boos in two particular
spots, and points to a live blog from The Guardian that sums up the speech
like this:
11.05am: Other than those two episodes, Mitt Romney has been received
politely by the NAACP audience, with plenty of applause at the appropriate
places.... 阅读全帖
n*******h
发帖数: 496
g***c
发帖数: 11523
49
开始在FB直播weekly address了
11:00AM today
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)